views:

475

answers:

5

In this question superwiren asks about the pitfalls for converting a .net 2.0 solution to .net 3.5.

What about .net 1.1 to .net 2.0?

Is 2.0 fully backwards compatible with 1.1?

+3  A: 

I think its depends on your code, the best option is to perform a trial run and see what errors it will generate. I dont think .NET 2.0 is fully backwards compatible, though they claim it is.

Common conversion issues and solutions

1.1 to 2.0 compatibility

kushin
+1  A: 

I've worked on a couple of ASP.NET 1.1 to 2.0 conversions (medium-sized websites), and we found that the Visual Studio conversion wizard made things pretty easy. We didn't run into any incompatibility issues, and the only things we really changed involved replacing deprecated api calls with new functions. I'd suggest you just give it a shot.

Kevin Tighe
+1  A: 

No it is not. There were a numerous amount of breaking changes presented in 2.0, but depending on how your application was coded, it may not be affected at all. Here's a document with links to all the changes from 1.1 to 2.0...

Breaking Changes

Assuming you didn't use anything in the application that was introduced in 2.0, then there's a larger chance of backwards compatibility.

What's New in 2.0

invenetix
A: 

1.1 to 2.0 compatibility link that @kushin mentioned helps a lot...

spinodal
+1  A: 

The only issue I've found in my code is having two controls in asp.net called the same thing with different casing. this used to work in 1.1, but crashes 2.0

It's a codesmell anyway, so there's no reason to cry about it

AndreasKnudsen