R – Is .net 1.1 supported on Windows Server 2008

netwindows-server-2008

We're having an issue.

We have the majority of our code written in .net 1.1 (including asp.net).

We're told that Microsoft do not support .net 1.1 on Windows Server 2008.

The bit we're really confused on is that it's apparently it's only Asp.Net 1.1 that isn't supported on Server 2008.

Our question is, what signifies Asp.net 1.1 is it just the System.Web namespace?

We'd like to get onto Server 2008 (well IIS7 really) asap and if we only have to re-write the Asp.net stuff and not all our business layer and data access layer it'd be much easier.

Best Answer

ASP.net 1.1 is not configured out of the box, but it can be done. Its really an IIS7 thing, not so much of a Windows Server 2008 thing.

Here is an article about how to configure it: http://blogs.iis.net/bills/archive/2008/06/02/installing-asp-net-1-1-with-iis7-on-vista-and-windows-2008.aspx

As far as upgrading to 2.0. It all depends on you code and if you used any features that have been depreciated. If you were developingin VS2003, opening the projects in VS2008 can converrt it, and then you can easily target .net fx 2.0. Most issues will be seen at compile time. Most changes are trivial, and can be changed in a few lines of code. There are also web.config changes that you may need.