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
What is Area in ASP.Net MVC?
What is edm in entity framework?
What are the components required to create a route in ASP.Net MVC?
Why is entity framework used?
Explain representational state transfer (rest) in detail?
what is lazy loading in entity framework?
Are there any parts of the .net framework 3.0 that only work on windows vista?
what is more complex to implement property, methods or event? how can I define criteria to compare the difficulty of implementation between them? for example the number of methods wanted to implements property is 2 methods. how many methods I need it to implements events?
Is .net framework backwards compatible?
Is dapper better than entity framework?
What happens when I install the .net framework 3.0? How can I upgrade if I already have the .net framework 2.0 installed?
Can you please explain the request flow in ASP.NET MVC framework?
What are the two ways to add constraints to a route?
My organization went through the approval process of supporting the .net framework 2.0 in production. Do we need to go through the same process all over again for the .net framework 3.0? Do I need to do any application compatibility testing for my .net framework 2.0 applications?
What are advantages of Dependency Injection (DI) in ASP.Net MVC?