AlwaysAProgrammer
AlwaysAProgrammer

Reputation: 2919

Sample project to compare ASP.Net and ASP.Net MVC2

I am trying to explain ASP.Net MVC 2 to my colleagues and the management. I have to develop a sample application in both ASP.Net and ASP.Net MVC 2 to show case the differences between the two.

What would be a good application that can bring out the differences between the two? I am planning to demonstrate performance and testability. Any other key points that I can demonstrate?

Any ideas is really appreciated.

Upvotes: 0

Views: 2241

Answers (2)

alexn
alexn

Reputation: 59022

If they're web developers that likes to keep up with all the latest stuff, show 'em your complete control over the generated source. Show them how they can create HTML5 compliant websites with no extra effort. No more (unless you want) viewstate or document wrapping form tags.

You could also show them the extensibility abilities with action filters and action results.

But, as you mentioned, the biggest win for everyone is testability.

Edit: I can really recommend TardisBank as a great sample application. It uses MVC3 with Razor and RavenDB as the database. The code is well structured and clean.

Upvotes: 2

hunter
hunter

Reputation: 63562

Show them the page size, that should be helpful

Upvotes: 1

Related Questions