What's new in ASP.NET 4.0 ?
Hi friends, Here I am going to illustrate some new features of ASP.NET 4.0.Below are few topics that I have covered .
Changes to Core Services -:
1) Extensible Output Caching,
2) Shrinking Session State,
3) Performance Monitoring,
4) Permanently redirecting a page,
Changes to Web forms :-
1) Better control of the viewstate,
2) Setting MetaTags,
3) Chart conrol,
4) Routing
Note: PFA presentation(PPT),that includes code examples, for better understanding of all the features. Extensible Output Caching
Possibility of creation of own storage:
Memory
Local or Remote Drive
Cloud Services
Distributed Cache EnginesShrinking Session State
In ASP.NET we can compress session state data for both Session-state server and Microsoft SQL server.Better control of the viewstate
1)Enabled
2)Disabled
3)InheritSetting Client ID
4 Modes
1)AutoID
2)Static
3)Inherit
PredictaleChart Control
1)35 distinct chart types
2)An unlimited number of chart areas,titles, legends, and annotations
3)3-D support for most chart types
4)Strip Lines, scale breaks, and logarithimic scaling
5)Simple binding and manipulation of chart data.
6)State management
7)Binary streaming
8)Support for common data formats, such as date, time and currency.Permanently Redirecting
New RedirectPermanent method that makes it easy to issue HTTP 301 Moved Permanently responses.
Example:
Response.RedirectPermanent("newlocation/page.aspx");
Note: PFA presentation(PPT),that includes code examples, for better understanding of all the features.