error ASP.NET version 1.1

  • Thread starter Thread starter Pengyu
  • Start date Start date
P

Pengyu

Here are the configurations of my computer:
Windows XP Professional
IIS 5.1

I tried to new a Web Service project using Visual Studio
2003 Professional at http://localhost/WebService1. It
said: "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 to solve this problem,

Thanks a lot,

Pengyu
 
From the command prompt try this:

C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i

Replace WINNT with your windows directory name.
 
Pengyu,

When you use VS.NET 2003 to create a new project, it makes a request for
get_aspx_ver.aspx. This file does not exist, and VS.NET is expecting to
get a 404 in response to this request. If it gets anything other than 404
(such as a 500), it will give you this message. It usually indicates that
there is a problem with ASP.NET on the box.

Do you have any existing ASP.NET pages you can browse to and test? See
what happens when you hit them.

Jim Cheshire [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
 
Back
Top