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 differences between entity framework and l2s? : Entity framework

0 Answers  


What is entityset? : Entity framework

0 Answers  


What are the Core features of ASP.NET MVC?

0 Answers  


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

0 Answers  


What is the common property in .net?

1 Answers   Nth Solution,






Difference between manifest , metadata?

3 Answers   Soma Technology, TCS,


What is mvc entity framework?

0 Answers  


What is tracing?Where it used.Explain few methods available

1 Answers  


Which are the abstract classes available under system.xml namespace

1 Answers  


Explain the advantages of asp.net mvc over asp.net?

0 Answers  


What is MSIL, IL, CTS?

13 Answers  


Where is the new functionality in the .net framework 3.0 (such as wcf, wf, wpf, and cardspace) installed to? Is that different from where the .net framework 2.0 is installed to?

0 Answers  


Categories