Niversity: Abdul Majid Niazai
Niversity: Abdul Majid Niazai
Asp.net
Abdul Majid Niazai
[email protected]
ASP.NET MVC
The above figure illustrates the flow of the user's request in ASP.NET MVC.
Advantages of ASP.NET MVC Framework
This approach provides the following advantages.
It manages application complexity by dividing an application into the model,
view and controller.
It does not use view state or server-based forms. This makes the MVC
framework ideal for developers who want full control over the behavior of an
application.
It provides better support for test-driven development.
It is suitable for large scale developer team and web applications.
It provides high degree of control to the developer over the application
behavior.
note
As per the above figure, when a user enters a URL in the browser, it goes to
the webserver and routed to a controller. A controller executes related view
and models for that request and create the response and sends it back to the
browser.
Points to Remember