Difference Between ASP.Net 3.5 and 4.0

What are some key differences between ASP.Net 3.5 and 4.0

+5
source share
3 answers

Read the white paper on what's new in ASP.NET 4.0: http://www.asp.net/learn/whitepapers/aspnet4 .

+2
source

Here are a few of the quick google searches:

1) Access to customer data:

ASP.NET 3.5: there is no direct access to data from the client side. We can go for any of these ASP.NET 4.0 methods: this structure has a built-in function for this. Below are methods for their implementation.

2) Meta keyword setting and meta description:

Meta keywords and descriptions are really useful for getting a list on a search engine.

ASP.NET 3.5: ASP.NET 4.0: , .

3) Enableviewstage

ASP.NET 3.5: : "True" "false"

ASP.NET 4.0: ViewStateMode , : Enabled, Disabled Inherit.

4)

ClientID .

ASP.NET 3.5: ClientID, , ASP.NET 4.0: ClientIDMode ASP.NET.

: http://www.dotnetspider.com/resources/34755-Main-Differences-between-ASP-NET-ASP-NET.aspx

+1

1) Chart controls integrated

2) PermanentRedirect () - Deletes round trips.

3) Integrated MVC, WCF.

0
source

All Articles