What is ASP.NET MVC?



What is ASP.NET MVC?..

Answer / harshada patil

Model–view–controller (MVC) is a software architectural pattern for implementing user interfaces. It divides a given software application into three interconnected parts, so as to separate internal representation of information from the way that information is presented to or accepted from the user.

MVC is a framework for building web applications using an MVC (Model View Controller) design:

The Model represents the application core (for instance a list of database records).
The View displays the data (the database records).
The Controller handles the input (to the database records).
The MVC model defines web applications with 3 logic layers,

The business layer (Model logic)
The display layer (View logic)
The input control (Controller logic)
The Model is the part of the application that handles the logic for the application data.

Often model objects retrieve data (and store data) from a database.

The View is the part of the application that handles the display of the data.

Most often the views are created from the model data.

The Controller is the part of the application that handles user interaction.
advantages of MVC?
Multiple view support

Due to the separation of the model from the view, the user interface can display multiple views of the same data at the same time.

Change Accommodation

User interfaces tend to change more frequently than business rules (different colors, fonts, screen layouts, and levels of support for new devices such as cell phones or PDAs) because the model does not depend on the views, adding new types of views to the system generally does not affect the model. As a result, the scope of change is confined to the view.

SoC – Separation of Concerns

Separation of Concerns is one of the core advantages of ASP.NET MVC. The MVC framework provides a clean separation of the UI, Business Logic, Model or Data.

More Control

The ASP.NET MVC framework provides more control over HTML, JavaScript, and CSS than the traditional Web Forms.

Testability

ASP.NET MVC framework provides better testability of the Web Application and good support for test driven development too.

Lightweight

ASP.NET MVC framework doesn’t use View State and thus reduces the bandwidth of the requests to an extent.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

Who defines the CAS code groups

1 Answers  


What is domain class model?

0 Answers  


Will the name change be reflected in any of the existing .net framework 2.0 apis, assemblies, or namespaces?

0 Answers  


Can we have more than 1 partial classes in the same file?

3 Answers   Encora,


what is the additional features in 1.1 rather than 1.0

1 Answers  


What is Globalizationa and Localization

1 Answers  


What are the ways to deploy an assembly?

3 Answers  


What is the use of trace utility ?

2 Answers  


What is .net framwork? what is web application? what is CLR? How does work CLR & wht is work of CLR? What is compile? wht is thread? what does use in .net?

4 Answers   IBM, NIIT,


Explain tempdata in asp.net mvc?

0 Answers  


who handles these error while writing the source code???.

2 Answers  


what are generics? Without generics what are the disadvantages in 1.1?

3 Answers   HP, iSoft, nTech Solutions,


Categories