asp.net.net-3.5migration.net-1.1

some questions on migrating ASP.NET 1.1 application to 3.5


I need to migrate a ASP.NET application from 1.1 to 3.5. I have gone through the answers on this forum already, but still have some questions

  1. should I convert the application from 1.1 to 3.5 directly? OR convert it to 2.0 first and then to 3.5 and the reasons for doing so.

  2. Is there any article that walks through the whole conversion process from 1.1 to 3.5 with solutions for any typical issues encountered during the conversion process?

  3. Is it possible to convert a ASP.NET 1.1 project to ASP.NET 2.0 using VS2008 OR do I need to use VS2005 IDE for doing so?

Thanks in advance for your help.


Solution

  • When converting the project from .NET 1.1 to 2 or higher, just use Visual Studio 2008.

    It can convert your project to either .NET 2 or .NET 3.X, without that much hassle, and 99% of your 1.1 code will compile just fine on the new framework.

    You will most likely spend way more time in converting the old code to use the new framework features, but all the 1.1 classes are still available. Therefore you can do the 'real' migration class by class; and develop new functionality using the newest framework features.