what is MVC pattern?
Answers were Sorted based on User's Feedback
Answer / 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 |
MVC (Model View Controller) pattern is very useful for Web
based e-commerce application.
Asp.Net web application
aspx, ascx, master pages are View
aspx.cs, ascx.cs, master.cs are Controller
App_Code folder contains classes and some references –
Model Component
MVC Advantages: Business logic can be easily modified
without affecting or any need to make changes in UI.
| Is This Answer Correct ? | 6 Yes | 2 No |
What is stateless model?
What “beforFilter()”,“beforeRender” and “afterFilter” functions do in Controller?
How we can multiple submit buttons in ASP.Net MVC
what is .NET ?
Explain RenderBody and RenderPage in ASP.Net MVC?
Will c# 3.0, vb.net 9.0, atlas, or linq be included in the .net framework 3.0?
what is way of loading data in ef (entity framework)?
i just want to write an exam regarding .net?plz give me information about taking a test?where to pay 4 d exam,exam centre?
What is different between User Control and Web Control and Custom Control?
Can Static Constructor be Overloaded?Justify it?
What is the difference between structures and enumeration ?
What is a razor file?