up vote 1 down vote favorite
1
share [g+] share [fb]

What are the inherent risk of upgrading a website from the 2.0 framework to the 3.5 framework?

I know the features given to me in the upgrade, just curious if there are any known issues that may pop up when upgrading.

I.E. Function X used to behave this way, and now behaves a new way.

link|improve this question

76% accept rate
feedback

3 Answers

up vote 5 down vote accepted

The only major 2.0->3.5 trouble areas I have encountered were in the Web.Config and centered around references to System.Web.Extensions 2.0. If you use the Visual Studio interface to change your project's .NET version, VS will automatically fix most reference incompatibilities in your Web.config file.

As for code differences, you're likely to find that some methods which have been obsoleted by newer versions, but I've never encountered any that outright break.

Microsoft holds a very strict backwards-compatibility standard so that they can reduce the impact of major upgrades as much as possible.

link|improve this answer
Gave you the answer. All feedback was good, so I figured I'd wait to see the up vote tally... you win ;-) – Clarence Klopfstein Aug 25 '10 at 16:29
feedback

AFAIK there's only one issue you should check after targeting your project to .NET 3.5: web.config file changes. There's some info on this subject here on SO.

Other than that .NET was heavily extended between 2.0, 3.0 and 3.5 versions. But library core is pretty stable in what considers its functionality behavior.

One more note. I upgraded 3 different web projects without any problem and not even touching web.config.

link|improve this answer
Most of the web.config conflicts come into play if you were already using .NET 2.0 System.Web.Extensions. If not, then you'll have fewer problems. As for not having any problems with the Web.config personally, chances are Visual Studio's project upgrade fixed your Web.config automatically. – Nathan Taylor Aug 25 '10 at 14:44
feedback

I have had very few problems whenever I have done this.

3.5 actually runs as 2.0 in IIS so really the 3.5 things are extras.

Give it a crack and compile, should be fine.

link|improve this answer
I have as well. But its a public facing website with 10,000K plus pages and such... so can't just wing it :-) – Clarence Klopfstein Aug 25 '10 at 14:12
The only problems might be around AJAX but as long as that was up to date under 2.0 it will be fine. The only problems I had were on compile. If it had compiled it was always OK after that. Do you have AJAX and/or webservices involved at all? – ArtificialGold Aug 25 '10 at 14:15
Yes to both. I've identified the AJAX risk. Just looking to see if there are core .NET risk. – Clarence Klopfstein Aug 25 '10 at 14:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.