tags:

views:

145

answers:

3

Possible Duplicate:
What will be the new features available in ASP.Net 4.0?

What all are the New features in asp.net 4.0.? Currently our team is doing project on .net 2.0 and we didn't go for an upgrade on asp.net 3.5. Now we are preparing to switch from asp.net 2.0 to asp.net 4.0. A list of such features would help us in designing the training program.

+3  A: 

Plase see this whitepaper from Microsoft detailing many of the new features in ASP.NET 4.0.

Håvard S
+4  A: 
Richard Szalay
+1 for creating an exhaustive list and covering .net 4.0 as a whole. Do keep it updated for any new feature or change in existing.
HotTester
please do update the list for any new updations.
HotTester
are there any new updates ? Please share...
HotTester
+2  A: 

There are many, but I will suggest that the more exciting things coming are the maturing technologies that I use. Project Astoria which changed to ADO.NET dataservices and then has had two CTP releases out of band will finally be brought into step with .NET 4.0 and be called WCF dataservices.

A restful data access layer with language integrated query and the power of anonymous and instance methods and type inference means you can write things like this semi psuedo code, with a lot of the problems ironed out and a lot of good forum knowledge:

Button.Click += new EventHandler((o,e) =>{DG.ItemsSource DataContext.tblUsers.Where(f=>f.active ==true;);

Don't mention MVVM or inefficiencies etc, but I believe this code does on one line what would take a fair few to do in .NET 2.0

DavidA