what is a mvc in asp.net?
Answer Posted / rajesh m
ASP.NET MVC is a part of the ASP.NET Web application framework
Model: The model contains the core information for an
application. This includes the data and validation rules as
well as data access and aggregation logic.
View: The view encapsulates the presentation of the
application, and in ASP.NET this is typically the HTML markup.
Controller: The controller contains the control-flow logic.
It interacts with the Model and Views to control the flow of
information and execution of the application.
Is This Answer Correct ? | 20 Yes | 2 No |
Post New Answer View All Answers
Explain what is asp.net mvc?
What operating systems will the .net framework 3.0 be available for?
What is a razor file?
Which .net framework is installed?
What is the difference between partial and renderpartial?
What is the difference between model and entity?
Explain the role of assembly in the .net framework.
What is model first? : Entity framework
Explain what platforms does the .net framework run on?
What is definingquery in entity framework? : Entity framework
What is entity sql? : Entity framework
If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
How to change the action name in mvc?
How we can invoke child actions in ASP.Net MVC?
What is ViewStart Page in ASP.Net MVC?