How do you implement MVC Pattern in ASP.NET?In any application you develop, you will have user interface which the User views and manipulates.
User might look at the screens and enter some data based on which certain processing has to happen. This user interface and processing logic have to be clearly distinguished and interaction has to happen between them in a smooth way. Such a process flow can be established in your application using MVC Pattern. MVC stands
for Model View Controller. Model contains your processing logic and View
contains the user interface. Interaction between them is achieved using
Controller. In ASP.NET, how is this MVC pattern implemented?
|