3

I have some .NET 1.1 websites that need to be converted into 4.0. I don't want to change the functionality or the design I just want them to be converted to 4.0 so that future edits can be made easily as working in 1.1 is not easy. What is the beast approach that I should follow for this purpose.

Anshuman Jasrotia
  • 3,135
  • 8
  • 48
  • 81

3 Answers3

5

Use the converter tool in VS 2012 and then clean up any errors after the build.

Avitus
  • 15,640
  • 6
  • 43
  • 53
3

just put the targetFramework element in the webconfig

<compilation targetFramework="4.0">

by doing this your website will run in Asp.Net 4.0 and because you dont want to change anything else just leave everything else as it is
because .net 4.0 is backward compatible i dont think you would face any errors

Parv Sharma
  • 12,581
  • 4
  • 48
  • 80
1

Don't forget to read Microsoft .NET Framework 1.1 and 2.0 Compatibility.

After that, be sure to check .NET 4.0 migration issues document.

Read C# in Depth from Jon Skeet that describes all new features for each version of C#.

Community
  • 1
  • 1
Viral Shah
  • 2,263
  • 5
  • 21
  • 36