Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

xp pro IIS. needs asp.net version 1.1 error message 1

Status
Not open for further replies.

seminewbee2005

Instructor
Jun 5, 2005
60
US
when I click new prject in vs.net and choose asp.net web app, I get an error saying the webserver does not have asp.net version 1.1.
I just downloaded this and ran through install wizard and rebotted. so do these asp.net version 1.1 need to be installed on my computer or installed within iis???
 
go to your cmd prompt, navigate to the /Windows/Microsoft.Net/Framework/V1.1.4322 folder and run aspnet_regiis -i

happened to me yesterday :)

hth

tigerjade

"Always code as if the person who ends up maintaining your code will be a violent psychopath who knows where you live." -- Martin Golding


 
I wanted that to solve it so bad but I ran it and it did not . anyother ideas??
 
do you have your isapi filters installed? go to iis manager, right-click on the Web sites folder & go to Properties, and make sure the file is listed under the ISAPI filters tab. if not, click add, name it whatever you want, and browse to /Windows/Microsoft.net/Framework/V1.1.4322/aspnet_filter.dll

also, right-click on the default web site icon & go to properties, and make sure the proper extensions are in the list of mappings (.aspx, .ascx, .asax, etc)

a third thing to try is to go to the microsoft downloads site & download & install the latest version of the .net framework v1.1 (and its sp1, if you like).

good luck!

tigerjade

"Always code as if the person who ends up maintaining your code will be a violent psychopath who knows where you live." -- Martin Golding


 
thanks too much.11
yes the solution was a one to punch of
1. start > run > cmd
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 aspnet_regiis.exe -i (I forget the .exe the first time)

2. start > run
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 aspnet_isapi.dll

Voowalla!


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top