1 / 20

What’s new in ASP.NET 4.0 ?

What’s new in ASP.NET 4.0 ?. Agenda. Changes to Core Services Extensible Output Caching Shrinking Session State Performance Monitoring Permanently redirecting a page Changes to Web forms Better control of the viewstate Setting MetaTags Chart conrol Routing Setting Client IDs.

creola
Download Presentation

What’s new in ASP.NET 4.0 ?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. What’s new in ASP.NET 4.0 ?

  2. Agenda • Changes to Core Services • Extensible Output Caching • Shrinking Session State • Performance Monitoring • Permanently redirecting a page • Changes to Web forms • Better control of the viewstate • Setting MetaTags • Chart conrol • Routing • Setting Client IDs

  3. Web Config File Refractoring • Auto-Start Web Applications • Expanding the Range of Allowable URLs • Extensible Request Validation • Object Caching and Object Caching Extensibility • Extensible HTML, URL, and HTTP Header Encoding • Dynamic Lookup • Covariance and Contravariance • Variance in C# 4.0

  4. Extensible Output Caching • Possibility of creation of own storage: • Memory • Local or Remote Drive • Cloud Services • Distributed Cache Engines

  5. To configure the custom cache provider, specify the details in your application's Web.config file <configuration> <system.web> <compilation debug="true" targetFramework="4.0"/> <caching> <outputCache defaultProvider=“AspNetInternalProvide"> <providers> <add name="CacheProviderName" 
 type="CacheProviderCategory"/> </providers> </outputCache> </caching> </system.web> </configuration>

  6. Possibility of creation of Cache Providers : <%@ OutputCache Duration="60" VaryByParam="None" providerName="CacheProviderName "%> • Usage of Different cache providers for different pages: public override string GetOutputCacheProviderName(HttpContext context) {     if (context.Request.Path.EndsWith(“example.aspx"))         return " CacheProviderName ";     else         return base.GetOutputCacheProviderName(context); }

  7. Shrinking Session State In ASP.NET we can compress session state data for both Session-state server and Microsoft SQL server. <sessionState   mode="SQLServer" sqlConnectionString="data source=local Initial Catalog=TestDB“ allowCustomSqlDatabase="true" compressionEnabled="true"/>

  8. Performance Monitoring If multiple applications use a single shared worker process , it is difficult for server administrators to identify an individual application performance. In IIS hosted ASP.NET 4.0 application we can gather performance data for an individual ASP.NET Application.

  9. Settings in the Aspnet.config file <configuration> <runtime> <appDomainResourceMonitoring enabled="true"/> </runtime> </configuration>

  10. Permanently Redirecting New RedirectPermanent method that makes it easy to issue HTTP 301 Moved Permanently responses. Example: Response.RedirectPermanent("newlocation/page.aspx");

  11. Routing Routing Mechanism .

  12. Essential Points for a URL • A domain name that is easy to remember and easy to spell • Short URLs • Easy to type URLs • URLs that visualize site structure • Persistent URLs that don't change

  13. URL Routing in .NET 4.0

  14. Namespace:System.Web.Routing public Route MapPageRoute( stringrouteName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess, RouteValueDictionary defaults ) Example: routes.MapPageRoute("","Category/{action}/{categoryName}", "~/categoriespage.aspx", true, new RouteValueDictionary {{"categoryName", "food"}, {"action", "show"}});

  15. Setting Meta Tags ASP.NET 4 introduces the new properties MetaKeywords and MetaDescription to the Page class. The @Page directive contains the Keywords and Description attribute. Example: Page.MetaDescription=“This is the default page” Page.MetaKeywords=“This is the default page”

  16. Better control of the viewstate View state can be opt in ViewStateMode • Enabled • Disabled • Inherit

  17. Setting Client ID 4 Modes • AutoID • Static • Inherit • Predictable

  18. Chart Control • 35 distinct chart types • An unlimited number of chart areas,titles, legends, and annotations • 3-D support for most chart types • Strip Lines, scale breaks, and logarithimic scaling • Simple binding and manipulation of chart data. • State management • Binary streaming • Support for common data formats, such as date, time and currency.

  19. THANK YOU !!

More Related