Upgrading a web server from ASP.NET 1.1 / 2.0 to 3.5

I'm still pretty new to ASP.NET development, so bear with me.

I am about to start developing on an updated version of an ASP.NET 1.1 website that I will be developing in ASP.NET 3.5. Currently my development server allows me to run 1.1 and 2.0 websites. I have version 3.5 installed, but are there any other settings / issues I should be aware of? This server will need to continue to run an ASP.NET 1.1 website along with 3.5 that I will be developing.

Thanks in advance.

EDIT: Although I have the .NET 3.5 framework installed, when I go to IIS and create a new virtual directory, it only gives me options 1.1 or 2.0.

+1


source to share


2 answers


This is what you are looking for:



http://www.hanselman.com/blog/HowToSetAnIISApplicationOrAppPoolToUseASPNET35RatherThan20.aspx

+3


source


You can set every site (indeed, every virtual directory if you like) to use a specific version of the runtime.



You shouldn't have any other configuration issues. If the server is set up to run 2.0 sites, you're good to go, since sites written against 3.5 use the 2.0 runtime, plus 3.5 bits if available.

+3


source







All Articles