ASP. NET 1.1

G

Guest

I have been trying to learn to program web projects and I can not seem to get
the web server on my desktop or another on my network to allow me to start a
web page.

I have seen this question asked in my review of this group but have yet to
see an answer that has helped.

I get the following error message :

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

I have Web publishing services and Front Page extensions loaded. I can get
the temporary web page to display at http://localhost/localstart.asp.

I have disabled firewall and it doesn't help.

I know many have ran into this when they began so if anyone can share their
experience and how they solved it I would be very appreciative.

Dave
 
P

Peter van der Goes

Dave Rams said:
I have been trying to learn to program web projects and I can not seem to
get
the web server on my desktop or another on my network to allow me to start
a
web page.

I have seen this question asked in my review of this group but have yet to
see an answer that has helped.

I get the following error message :

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

I have Web publishing services and Front Page extensions loaded. I can
get
the temporary web page to display at http://localhost/localstart.asp.

I have disabled firewall and it doesn't help.

I know many have ran into this when they began so if anyone can share
their
experience and how they solved it I would be very appreciative.

Dave

Have you followed the instructions in Microsoft Knowledge Base Article
#306005?
Here's an excerpt:
"
After you install the Microsoft .NET Framework SoftwareDevelopment Kit (SDK)
or Visual Studio .NET, Microsoft Internet Information Service (IIS) mappings
are created to associate the new file extensions and settings for ASP.NET.
If you did not have IIS installed when you ran the SDK or Visual Studio
Setup, or if you uninstalled and reinstalled IIS after you ran the SDK or
Visual Studio Setup, those settings will not be in place. You experience
unexpected behavior when you try to view ASP.NET pages.


When you try to create a new ASP.NET Web application in Visual Studio .NET
2003, you receive the following 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.

MORE INFORMATION
To fix IIS mappings for ASP.NET, follow these steps:

Run the Aspnet_regiis.exe utility:

Click Start, and then click Run.

In the Open text box, type cmd, and then press ENTER. At the command
prompt, type the following, and then press ENTER:

"%windir%\Microsoft.NET\Framework\version\aspnet_regiis.exe" -i

In this path, version represents the version number of the .NET Framework
that you installed on your server. You must replace this placeholder with
the actual version number when you type the command.

Register the Aspnet_isapi.dll:

Click Start, and then click Run.

In the Open text box, type the following, and then press ENTER:

regsvr32 %windir%\Microsoft.NET\Framework\version\aspnet_isapi.dll

Regsvr32 returns the results of the registration."
 
G

Guest

Thank you Peter. I must have read dozens of articles and never came across
the ones you mentioned. It seems the mapping was the problem.

Actually the first time I started a tutorial about 2 weeks ago I was able to
get the server to respond but some how must have lost the mapping and never
was able to figure out what was wrong until now.

Again, thanks very much.

Dave
 

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