vote up 2 vote down star

Hi all,

i have a asp.net 2.0 web app that runs with ajax 1.0 extensions and isapi rewrite.

I have some bugs and i am considering whether to upgrade to 3.5 and use asp.net mvc instead.

Please advise.

flag

4 Answers

vote up 3 vote down

Upgrade your framework version to .NET 3.5 SP1. Use the System.Web.Routing namespace and you'll get MVC's URL routing functionality. You don't need to completely switch over to MVC from WebForms.

link|flag
by upgrade the framework version, you mean upgrade the server framework. What about the code of the web application? Please forgive me. I am quite the noob. – lastcowboy Mar 22 at 2:33
You should only need to upgrade the server framework. Despite the version number change, .Net 3.5 SP1 uses the same core runtime as .Net 2.0. The code should still just work. – anurse Mar 22 at 4:13
You will need to install .NET 3.5 SP1 and Visual Studio 2008 SP1 (if you're using Visual Studio). Then you'll get the new System.Web.Routing.dll installed. – Jonathan Parker Mar 22 at 9:25
vote up 1 vote down

If your of the elk that enjoys rewriting your entire project because some new geewiz technology comes out then go for it (I know I am). If not, stick to what you have. MVC Framework is great but rewriting code will almost always cause you more problems then fixing the exsisting bug you have.

link|flag
vote up 0 vote down

100% Asp.Net MVC is better than WebForms and it does no matter 2.0 or 3.5. Just try and you will understand my point :)

link|flag
vote up 1 vote down

I would upgrade to WebForms 3.5 (.NET 3.5 SP1). Routing was baked into .NET 3.5 SP1. After that if you find that you want to use some of the other features of MVC then you could upgrade then. Here's an MSDN magazine article that should get you started.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.