what is MVC pattern?

Answers were Sorted based on User's Feedback



what is MVC pattern?..

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

what is MVC pattern?..

Answer / kamal

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

Post New Answer

More Dot Net Framework Interview Questions

What are the advantages of asp.net mvc?

0 Answers  


What is the use of trace utility ?

2 Answers  


How do I define my own code group

1 Answers  


Difference between Dispose and Finalize method

1 Answers  


What are the 3 main components of an asp.net mvc application?

0 Answers  


What is .net architecture?

0 Answers  


What is Globalizationa and Localization

1 Answers  


What is difference between Viewbag and Viewdata in ASP.NET MVC?

0 Answers   NA,


What is ViewStart Page in ASP.Net MVC?

0 Answers   B-Ways TecnoSoft,


Can a view be shared across multiple controllers? If yes, how we can do that?

0 Answers  


Explain Keep method in Tempdata in ASP.Net MVC?

0 Answers  


what are partial classes?

12 Answers   Digimaker, HP, N Tech, TCS,


Categories