I have a web application that I have been tinkering with for years - about 6 years; it's built in ASP.NET Web Forms with VB. Every so often, I jump into this app and create some new features or fix some bugs, and over the past few years I've been itching to get it converted over to C# and ASP.NET MVC. But the application has about 100 screens (distinct views - often a single ASPX will have multiple screens) and there are tens of thousands of lines of Web Forms event-driven code, so I've been intimidated by the idea of a rewrite. This weekend though, I wanted to integrate a fancy new UI design for the application - one that is so drastically different from the old that I will have to touch every screen. With this ahead of me, I decided to embark upon finding a way to start a migration to the new and fun style of web application development: ASP.NET MVC with C# and the Razor syntax.
Existing Application Characteristics Again, the existing code is Web For ...
Go to the complete details ...