mvc framework
well i have although study many articles related to the mvc framework that why we use mvc framework in asp.net instead of normal asp.net i didnt get convinced can any body tell me what is basically the usefullnes pf using mvc framework in asp.net over normal asp.net
Master BillaPosted Oct 21, 2009, 11:55 PM
What is a Model View Controller (MVC) Framework?
MVC is a framework methodology that divides an application's implementation into three component roles: models, views, and controllers.
One of the benefits of using a MVC methodology is that it helps enforce a clean separation of concerns between the models, views and controllers within an application. Maintaining a clean separation of concerns makes the testing of applications much easier, since the contract between different application components are more clearly defined and articulated.
The MVC pattern can also help enable red/green test driven development (TDD) - where you implement automated unit tests, which define and verify the requirements of new code, first before you actually write the code itself.
A few quick details about the ASP.NET MVC Framework
I'll be doing some in-depth tutorial posts about the new ASP.NET MVC framework in a few weeks once the bits are available for download (in the meantime the best way to learn more is to watch the video of my Alt.net presentation).
A few quick details to share in the meantime about the ASP.NET MVC framework:
Thank you
jingePosted Oct 21, 2009, 11:16 PM
http://stackoverflow.com/questions/102558/biggest-advantage-to-using-asp-net-mvc-vs-web-forms
Kirtan PatelPosted Oct 21, 2009, 4:48 PM
The main advantages of ASP.net MVC are
1) Enables the full control over the rendered HTML.
2) Provides clean separation of concerns(SoC).
3) Enables Test Driven Development (TDD).
4) Easy integration with JavaScript frameworks.
5) Following the design of stateless nature of the web.
6) RESTful urls that enables SEO.
7) No ViewState and PostBack events
please check " do you like this answer" if it helps you :)