ASP.NET versions
-
We've got an IIS server running with ASP.NET 1 and 2 on it, and are trying to develop an intranet website based on 2. The web pages are being created with a prog that uses version 2 only, and all the settings we can find on the server are also set to use Version 2, but loading a web page always brings up an error, and the ASP version number it contains is always 1.xxxxxx Any ideas how to configure the server so it uses ASP 2.xxx for the website instead?
-
We've got an IIS server running with ASP.NET 1 and 2 on it, and are trying to develop an intranet website based on 2. The web pages are being created with a prog that uses version 2 only, and all the settings we can find on the server are also set to use Version 2, but loading a web page always brings up an error, and the ASP version number it contains is always 1.xxxxxx Any ideas how to configure the server so it uses ASP 2.xxx for the website instead?
Have you set the website to use v2 in IIS? Go into IIS right click on the web site and go to properties. In the ASP.net tab change the version to 2 and apply. If the application pool currently has any 1.1 applications running in it you will need to make sure you assign it to a new pool since you cannot mix versions in application pools.
-
Have you set the website to use v2 in IIS? Go into IIS right click on the web site and go to properties. In the ASP.net tab change the version to 2 and apply. If the application pool currently has any 1.1 applications running in it you will need to make sure you assign it to a new pool since you cannot mix versions in application pools.
Thanks for the reply, yes we've set it to version 2. It could be the application pool thing, I'll have to try and find those settings.
-
Thanks for the reply, yes we've set it to version 2. It could be the application pool thing, I'll have to try and find those settings.
IF you are running IIS with both .Net 1 and .Net 2 you need to set a different application pool for both. You can share an application pool for all 1 and a seperate one for 2.0 but they cannot have the same pool.
Darroll