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?
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?
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.
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.
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...
Assuming you didn't use anything in the application that was introduced in 2.0, then there's a larger chance of backwards compatibility.
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