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 |
WHICH IS THE BEST INSTITUTE FOR DOTNET REAL TIME PROJECT TRAINING
21 Answers ABC, Cap Gemini, Comspark,
Difference between manifest , metadata?
3 Answers Soma Technology, TCS,
Explain JSON Binding?
What is Global Assembly Cache (GAC) and what is the purpose of it?
How large is the .net framework 3.0? Does this change make the release larger?
What is shadowing?
what is Assemble
I want to fetch data from datareader. i have three tables in datareader. i want to bind my two table with datagrid, then i want to fetch a value from my third table. do u have any idea pls help me. we use dr.nextresult() for multiple tables.
Describe the .net framework architecture.
What is Attribute Routing in ASP.Net MVC?
How could we achieve Langauge Interoperability through "CLS"?? Please Expalin in detail with Example.. Thanks for the Help!!!!!
What happens when you encounter a continue statement inside the for loop ?