Answer Posted / suhasini suresh
Model-View-Controller (MVC) is a classic design pattern
often used by applications that need the ability to
maintain multiple views of the same data. The MVC pattern
hinges on a clean separation of objects into one of three
categories — models for maintaining data, views for
displaying all or a portion of the data, and controllers
for handling events that affect the model or view(s).
Because of this separation, multiple views and controllers
can interface with the same model. Even new types of views
and controllers that never existed before can interface
with a model without forcing a change in the model design.
Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Do you know about the new features in asp.net mvc 4 (asp.net mvc4)?
What is NonActionAttribute ?
What is latest version of .net framework?
what do you mean by table-per-type?
What are non action methods in mvc?
How can I return string result from action in asp.net mvc?
Why to use html.partial in mvc?
What are the components required to create a route in ASP.Net MVC?
Explain dependency resolution?
Explain bundle.config in mvc4?
If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
When will the .net framework 3.0 be released?
What is the use of view model in asp.net mvc?
Explain the new features added in version 4 of mvc (mvc4)?
What is the difference between model view and controller?