3
Reply

What is the purpose of using MVC programming pattern in ASP.NET?

Kishan Singh

Kishan Singh

Jul 26, 2012
10.5k
0

    We can have different views for one controller like which is not possible in ASP.NET classic where the code behind file contains a single source file for representation.And MVC main drawback is every control doesn't have its server side events as in classic .net.

    vanama saishanthan
    May 12, 2015
    0

    It is used for separation of concerns by means of Model View Controller architecture using loose coupling among them so that each of these items can be tested independently. It supports the test driven development

    Prashant Koli
    May 12, 2015
    0

    MVC based on loosely coupled architecture and principles like separation of concerns, Using MVC you can perform testing of individual part while other can still develop. No sticky code behind...

    mahesh
    March 15, 2013
    0