Select .Net Version

  • Thread starter Thread starter Niclas
  • Start date Start date
N

Niclas

Hi,

I have a website that is configured for .net v2.0 and a web application
that only runs on 1.1 that I want to host on this site. Is it possible
to specify in web.config or Assemblyinfo or similar what version to use
for this application, or am I bound to the version the IIS site is
running ?

Niclas
 
You are bound by IIS, but an IIS globally configured to run 2.0, should run
1.x code just fine...just not the other way around.

Karl
 
You can use aspnet_regiis to configure a single site to use 1.1.

In general:
Aspnet_regiis.exe -s W3SVC/1/ROOT/YourAppname


--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
But, you can set each root differently with aspnet_regiis and the -s switch
with a virtual root directory path (metabase style path).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top