Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to know the difference between the versions of dotnet frameworks
like what is the difference between 2.0,3.5 and 4.0 framework???

What are new features in these?
Posted

ASP.NET 3.5 –Main features:
1) AJAX integration
2) LINQ
3) Auto Properties
4) Lambda expressions

There is no direct method to access data from client side
We use these method to access..
1) Pagemethods of script manager
2) ICallbackEventHandler interface
3) XMLHttphanlder component

Enableviewstate-- property has two values "True" or "false"

We have to use ClientID property to find out the id which is dynamically generated

ASP.NET 4.0: In this framework there is an inbuilt feature for this. Following are the methods to implement them.

1) Client data controls
2) Client templates
3) Client data context

Enableviewstate --ViewStateMode property takes an enumeration that has three values: Enabled, Disabled, and Inherit.

The new ClientIDMode property is introduced to minimize the issues of earlier versions of ASP.NET.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 23-May-11 11:57am    
I would be more careful. You consider those as main features but others may disagree. You list is incomplete. References to original documentation is much better.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900