Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What am I missing by not moving my ASP.NET 2.0 site to ASP.NET 3.5?

I have a web application using ASP.NET 2.0 and I want to know if I should be moving it to ASP.NET 3.5, particularly... what am I missing by not moving to ASP.NET 3.5?

I understand the disadvantages, but I don't understand the advantages.

What are the biggest benefits of migrating/rewriting?

Will I get a speed improvement?

Is MVC that much easier than my old-fashioned WebForm application?

Will it look cooler?

like image 470
Jason Avatar asked Sep 25 '08 04:09

Jason


3 Answers

You will only miss access to the newer .NET 3.5 libraries, and cool syntax such as LINQ and lambda expressions. Performance wise they will run the same.

By the way, ASP.NET MVC is NOT included with .NET 3.5...yet.

like image 131
cruizer Avatar answered Oct 20 '22 15:10

cruizer


New C# 3.0 compiler features.

like image 1
Alexander Kojevnikov Avatar answered Oct 20 '22 15:10

Alexander Kojevnikov


I'd say the biggest thing is Linq. At least it is for us, as we're completely replacing the old data layer with it! (Slowly, but surely.)

like image 1
CodeRedick Avatar answered Oct 20 '22 16:10

CodeRedick