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

Explain what is routing?

0 Answers  


Can source code be reverse-engineered from IL?

2 Answers  


What is definingquery in entity framework? : Entity framework

0 Answers  


How do you do role based security ?

1 Answers   Accenture, BirlaSoft,


What is JIT and how is works ?

10 Answers  






what is namespace?

9 Answers   TCS,


what is a round trip?What is a postback?

4 Answers   Bosch, ONOTech,


What are the main features of asp.net mvc 4 used by asp.net web api?

0 Answers  


what is scalar property?

0 Answers   Microsoft,


Can u tell me differences which are introduced in .Net 1.1 and 2.0 and 3.0 and also in 3.5 ? by detailed?

1 Answers   ABC,


What is namespace of asp.net mvc?

0 Answers  


What are the methods in Thread class?

3 Answers  


Categories