how to tell which version of asp.net is in use?

how to tell which version of asp.net is in use?

am 20.12.2007 00:58:32 von DFS

server 2003. I added IIS and specifically selected asp.net. I realize this
version is 1.1. However, before doing this I had already installed the .net
framework v2 from windows update.

looking in IIS manager I see by using add/remove programs to add asp.net
that the asp.net v1.1 web extension was enabled. Also in IIS manager on the
asp.net tab it says v1.1, and on the ISAPI filters tab the asp.net v2 filter
is listed, but not 1.1.

So I need to support both asp.net v1.1 and v2 apps... based on what I
already siad am I? I didn't see a specfic v2 web extension? asp.net tab says
1.1, not 2. Only filter on ISAPI tab listed is v2?

sorry for the sketchy post.. I'm in a rush. Hopefully I've been clear enough
so you know what I've done and what I'm getting at.

any help would be great. thanks.

Re: how to tell which version of asp.net is in use?

am 21.12.2007 10:12:16 von David Wang

On Dec 19, 3:58=A0pm, "David" wrote:
> server 2003. I added IIS and specifically selected asp.net. I realize this=

> version is 1.1. However, before doing this I had already installed the .ne=
t
> framework v2 from windows update.
>
> looking in IIS manager I see by using add/remove programs to add asp.net
> that the asp.net v1.1 web extension was enabled. Also in IIS manager on th=
e
> asp.net tab it says v1.1, and on the ISAPI filters tab the asp.net v2 filt=
er
> is listed, but not 1.1.
>
> So I need to support both asp.net v1.1 and v2 apps... based on what I
> already siad am I? I didn't see a specfic v2 web extension? asp.net tab sa=
ys
> 1.1, not 2. Only filter on ISAPI tab listed is v2?
>
> sorry for the sketchy post.. I'm in a rush. Hopefully I've been clear enou=
gh
> so you know what I've done and what I'm getting at.
>
> any help would be great. thanks.


ASP.Net 2.0 is currently installed but not running.

You will have to enable ASP.Net 2.0 on a per-application basis. When
this happens you will also see a Web Service Extension for ASP.Net
2.0.

Changing ASP.Net version can be either done via the IIS Manager UI, or
from the commandline using aspnet_regiis.exe.

You will have to make sure that you never run multiple versions of
ASP.Net in the SAME Application Pool. The easiest way to do this is to
create two Application Pools, one for ASP.Net 1.1 and the other for
ASP.Net 2.0, and when you configure an ASP.Net version for an app you
also put it in the appropriate versioned Application Pool.


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//

Re: how to tell which version of asp.net is in use?

am 24.12.2007 06:05:02 von DFS

got it. thank you. very helpful.

"David Wang" wrote in message
news:f7c5352c-828d-4112-8918-2c64f08a4383@t1g2000pra.googleg roups.com...
On Dec 19, 3:58 pm, "David" wrote:
> server 2003. I added IIS and specifically selected asp.net. I realize this
> version is 1.1. However, before doing this I had already installed the
> .net
> framework v2 from windows update.
>
> looking in IIS manager I see by using add/remove programs to add asp.net
> that the asp.net v1.1 web extension was enabled. Also in IIS manager on
> the
> asp.net tab it says v1.1, and on the ISAPI filters tab the asp.net v2
> filter
> is listed, but not 1.1.
>
> So I need to support both asp.net v1.1 and v2 apps... based on what I
> already siad am I? I didn't see a specfic v2 web extension? asp.net tab
> says
> 1.1, not 2. Only filter on ISAPI tab listed is v2?
>
> sorry for the sketchy post.. I'm in a rush. Hopefully I've been clear
> enough
> so you know what I've done and what I'm getting at.
>
> any help would be great. thanks.


ASP.Net 2.0 is currently installed but not running.

You will have to enable ASP.Net 2.0 on a per-application basis. When
this happens you will also see a Web Service Extension for ASP.Net
2.0.

Changing ASP.Net version can be either done via the IIS Manager UI, or
from the commandline using aspnet_regiis.exe.

You will have to make sure that you never run multiple versions of
ASP.Net in the SAME Application Pool. The easiest way to do this is to
create two Application Pools, one for ASP.Net 1.1 and the other for
ASP.Net 2.0, and when you configure an ASP.Net version for an app you
also put it in the appropriate versioned Application Pool.


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//