Enabling ASP.NET 1.1 in IIS 5.1

G

Guest

hello

I have Windows XP Pro and IIS 5.1 installed and I have written some ASP pages. Now I'm exploring the possibility of using ASP.NET in our project

I've installed Visual Studio .NET 2003 Enterprise and .NET Compact Framework with ASP.NET 1.1. However, when I try to create a new VB.NET WebApplication, I get an error message

" Visual Studio .NEt has detected that the specified Web server is not running ASP.Net version 1.1. You will be unable to run ASP.NET Web applications or services.

How can I enable ASP.NET 1.1 for my Web server? I need it also in our REAL Web server, running Windows 2000 Server with IIS

Mike
 
J

Jose Marcenaro

Open a CMD window, change dir to
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322

Run the following commands in sequence:
aspnet_regiis -i
aspnet_regiis -s W3SVC/

The first one installs and registers the ASPNET libraries [in case they are
not installed, no harm on doing it again if they are]
The second assigns the .NET framework 1.1 ASPNET filters for the root web
site and all its descendants.

Regards
Jose.

Mike said:
hello,

I have Windows XP Pro and IIS 5.1 installed and I have written some ASP
pages. Now I'm exploring the possibility of using ASP.NET in our project.
I've installed Visual Studio .NET 2003 Enterprise and .NET Compact
Framework with ASP.NET 1.1. However, when I try to create a new VB.NET
WebApplication, I get an error message:
" Visual Studio .NEt has detected that the specified Web server is not
running ASP.Net version 1.1. You will be unable to run ASP.NET Web
applications or services. "
How can I enable ASP.NET 1.1 for my Web server? I need it also in our REAL
Web server, running Windows 2000 Server with IIS.
 

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

Top