Click here to Skip to main content
15,867,308 members
Articles / Web Development / XHTML

ASP.NET MVC or Classic ASP.NET - What to Choose

Rate me:
Please Sign up or sign in to vote.
4.29/5 (7 votes)
31 Jul 2009CPOL9 min read 67.9K   28   15
This article discusses the web form model and the MVC model

Introduction

MVC (Model View Controller) is the new word for ASP.NET developers. Though it's almost 1+ years old (CTP was released on 12th DEC 2007), it started suddenly buzzing the market. Everybody is talking about ASP.NET MVC now. So I thought of putting an article regarding this, hope this will help people who are trying to learn the new framework from Microsoft. Oops... did I say that, is it a framework?? We will see.

Goals

You can find a lot of articles regarding the new framework on the internet. What this article is trying to convey is when to decide to use this framework over existing ASP.NET models (the web forms basically)... a comparison that will help in decision making.

What is MVC??

As I said earlier, this is a new framework provided by Microsoft to design and develop a new generation of web applications on .NET platform. Go to Wiki, Google and you will find that this is an architectural design pattern. A new generation since the model in which classic ASP.NET page work, it’s different from that.

This is a framework methodology that divides an application's implementation into three component roles: models, views, and controllers.

  • Models: These are the components of the application that are responsible for maintaining state. Say a model maps to a database table with the entries in the table representing the state of the table.
  • Views: These are the components responsible for displaying the application's user interface. A View extracts necessary information from a model and renders a user interface to display that.
  • Controllers: These are the components responsible for handling end user interaction, updating the model to reflect a change in the state of the application, and yes finally choosing a view to render to display UI. This is the heart of the framework.

Why MVC, The New Framework?

Now here is the big question that why we need a new framework and architecture altogether for developing web applications. Are we not happy with the more than half a decade proven technology of Microsoft for doing the same work, that’s web forms (classic .aspx pages). Let us see.

Remember the initial days of ASP.NET 2.0 learning, people have the tendency of mixing up the presentation layer with data access and business logic layer. Especially I remember the sqldataSource control embedded to an ASP.NET server control. See this:

Click to enlarge image

Click to enlarge image

Web applications developed this way are quite difficult to maintain. And they are definitely challenging to test appropriately. Oh yes, have you ever tried to test the full ASP.NET application? It's impossible unless you tweak the runtime environment. You can test the classes in your separated BLL or DAL but not the UI. This is just an example and we have a lot more of this kind. So your boss asks you to read about best practices, design patterns so that you can separate the layers properly, hence it can be reusable, testable and maintainable. Read Google Separation of Concerns to understand.

MVC ensures a clean separation between the data model and the user interface in such a way that changes to the user interface don't affect data handling. At the same time, the data model and related access code can be refactored without the need for changing the user interface accordingly. MVC Framework should be considered as an alternative to the Web forms. With MVC, we are back to the era where people used design web pages with HTML only, the stateless behavior of web. In MVC, you can have full control over HTML which is good for programmers. Web forms were popular since they are able to abstract HTML, but that’s an issue when you need to have browser compatibility and integration with JavaScript frameworks.

MVC does not support post back and view state (the culprit behind page performance), it does not consider the URL to map to a particular physical file on server as in case of web forms. It's just a logical one in case of MVC. So in MVC, you can have custom format and the engine will handle it to render it correctly. How does it do that------------for this please wait to check my next article on Httphandlers and how they handle things in MVC-----------for the time being remember that it’s a factory of httphandlers which is centralized and handles the requests. This HTTP handler analyzes the syntax of the URL and maps it to a special server component known as the controller.

Models and controllers are just simple *.cs files containing interfaces, classes, methods……View is the most interesting here, which is pluggable. That means you can have .aspx, .ascx pages anyway for rendering your controls and text, but also you can have your own view engine created to render contain and you can have your file name extensions as *.abcde and this will be taken care of by the httphandler. For example, you can see one screenshot on how we use an XSLT based view engine to render our content. You can have some other view engines here. MVCContrib library contains 4 alternate view engines, Brail, NHaml, NVelocity and XSLT.

Image 3

Don’t try to understand this. This is what we use in our organization. I will put up an article altogether about how to write your own view engine. That’s kind of hard but before that, it will have a series of articles.

Ok so we were discussing postbacks, view state and rendering engine. In MVC, the default engine is Web Forms view engine, and that’s why you have .aspx and .ascx files in your MVC framework. So you can have server controls in your pages, have event handlers and render contents, then a question, why MVC?? Again. Ok you can have all those but you don’t have view state in MVC for having the state of the server controls. Of course you can overcome that using sessions, cache objects, etc. If MVC does not have server controls, then what? We have only HTML controls. So how do we do RAD (Rapid application Development), as we do in ASP.NET. Ok we have HTML helpers in this case and I am eagerly looking at any third party or Microsoft to come up with some controls for rapid development in MVC framework. Just have a look when you develop applications in MVC in VS 2008. I am here using the example of nerddinner which is written by scott gu and others. He also has a free book which is a walkthrough of the application with code examples. Though the code provided in the book does require some correction so that the app runs correctly in production, it's almost a complete app you can build from scratch on your own. The errors are minor.

This is how one of the aspx pages looks like and it does not have any page behind code (Separation of Layers).

Image 4

So what do you have generally on the pages. It's nothing but HTML controls and links with parameters. So unlike ASP.NET pages, these pages are search engine friendly and rank well by search engines. Note: MVC does not have page life cycle concept.

Before I go to other topics or conclude the article, let's talk about the TDD (Test driven development) aspect of MVC. As we see, it's difficult to have a test driven development approach for the full ASP.NET application, it's easy for MVC apps. Since all the three roles (M—V—C) have a clear separation of controls, it's easy to test the full application and that too injecting required test data from the application itself. Please Google regarding Dependency Injection framework and mocking frameworks.

What to Choose

Few points which can help you:

Scenarios What to choose?? Remarks
Your developers love drag and drop control from the tool box and raw HTML is a nightmare for them Web forms Classic ASP.NET controls are abstractions of HTML, with “runat” server attribute.
Your Application demands fancy visual controls to display data. Even if it requires something like Gridview Web froms MVC only has HTML helpers. Some of those are:
  • ActionLink — Links to an action method
  • BeginForm — Marks the start of a form and links to the action method that renders the form
  • CheckBox * — Renders a check box
  • DropDownList * — Renders a drop-down list
  • Hidden — Embeds information in the form that is not rendered for the user to see
  • ListBox — Renders a list box
  • RadioButton * — Renders a radio button
  • TextArea — Renders a text area (multi-line text box)
  • TextBox * — Renders a text box

And you don’t have much choice. We never want a for loop around HTML controls to achieve the gridview functionality.

You want to achieve Separation of Controls build into the system/framework and you don’t need to bother MVC SOC is in the architecture of this framework. With web forms, you can achieve SOC but you need to do that on your own with some best practices while writing your code.
You want to test each and every component of your application right from the beginning, without connecting to databases MVC MVC was designed by keeping testability in mind.
Let me know if I missed any major one. Web forms is mature and MVC is young which lacks component model. But needless to say it leads you towards a good code design.

Conclusion

I know this is not all and maybe I have not put the things well. I just tried to give an overview of both the models and few features of those. Hope this helped to find the line between those 2 models. So to conclude, what to choose as that was our goal, you need to decide. If it's a heavily data driven site, then probably MVC may not fit in. But if its data driven where you don’t have fancy requirements for data display or something of a similar kind and for other types of development, MVC is a good choice. But before choosing any one of them, the architect needs to understand the underlying methodologies of both. This is just a simple work to identify those.

Thanks.

Please mail at debiprasad.baral@gmail.com for any feedback, so that this article can be improved.

History

  • 31st July. 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Teleperformance
India India
Debiprasad Baral 9868978006
Check out my Linkedin Profile http://www.linkedin.com/in/debiprasadbaral

Comments and Discussions

 
Generalvery good article Pin
Donsw2-Jun-10 11:47
Donsw2-Jun-10 11:47 
GeneralSame old biased remarks Pin
Member 19049705-Aug-09 14:35
Member 19049705-Aug-09 14:35 
GeneralRe: Same old biased remarks Pin
Jinx10110-Aug-09 15:45
Jinx10110-Aug-09 15:45 
GeneralRe: Same old biased remarks Pin
debiprasadbaral11-Aug-09 4:16
debiprasadbaral11-Aug-09 4:16 
GeneralRe: Same old biased remarks Pin
Member 190497012-Aug-09 3:30
Member 190497012-Aug-09 3:30 
GeneralRe: Same old biased remarks Pin
debiprasadbaral11-Aug-09 4:18
debiprasadbaral11-Aug-09 4:18 
RantGood job but I hate MVC Pin
SlingBlade4-Aug-09 22:55
SlingBlade4-Aug-09 22:55 
GeneralRe: Good job but I hate MVC Pin
debiprasadbaral11-Aug-09 4:22
debiprasadbaral11-Aug-09 4:22 
GeneralRe: Good job but I hate MVC Pin
SlingBlade11-Aug-09 9:32
SlingBlade11-Aug-09 9:32 
GeneralThanks Pin
Hemant.Kamalakar4-Aug-09 3:57
Hemant.Kamalakar4-Aug-09 3:57 
Generalcontrols in mvc Pin
aliascodeproject1-Aug-09 5:24
aliascodeproject1-Aug-09 5:24 
GeneralRe: controls in mvc Pin
Jinx10110-Aug-09 15:49
Jinx10110-Aug-09 15:49 
GeneralRe: controls in mvc Pin
debiprasadbaral11-Aug-09 4:09
debiprasadbaral11-Aug-09 4:09 
GeneralRe: controls in mvc Pin
Jordan Marr28-Aug-09 9:07
Jordan Marr28-Aug-09 9:07 
GeneralHtml Helper Pin
fred_00731-Jul-09 16:22
fred_00731-Jul-09 16:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.