>I just installed .NetFramework v1.1, ASP.Net 1.1, and VS.Net professional
> 2003 in my Windows Server 2003 machine. I try to create a ASP.NET web
[quoted text clipped - 11 lines]
>
> Any solutions are welcome. Thanks.
If the installation order is as you stated, the mapping between IIS and the
.NET framework was not established. You can try either of the following
techniques:
1. Uninstall, then reinstall the .NET Framework (no need to reinstall all of
Visual Studio), or
2. Follow KB article #306005 to establish the needed mapping. 306005 says in
part:
<quote>
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.
REFERENCES
For more information about the Aspnet_regiis.exe utility,
run
this .exe file with -? as an argument.
</quote>
Hope this helps.

Signature
Peter [MVP Visual Developer]
Jack of all trades, master of none.
david-tiger - 07 Mar 2005 01:35 GMT
Thanks, Peter.
I tried. It doesn't solve my problem.
DefaultWebSite: permission is set to Allowed FULL Control for Admins,
ASP.NET, EveryOne, IIS_WPG, VS_Developers
Administrator is Member of VS_developer, IIS_WPG
IWAM_Machine is Member of Administrators, IIS_WPG, VS_Developers
If I login as Administrator, I got that error msg when I tried to create an
ASP.NET VB.Net project. At same time, I can not NEW | Server Extensions 2002
Web (Got Your are not authorized to view this page "newsbweb.htm"
If I login as IWAM_Machine, I got "500 Internal Error" when I try to create
an ASP.NET VB.Net project. But I am be able to New | Server Extensions 200
WEB.
Any help to this problem is greatly appreciated.
David DotNet-DotNut
> >I just installed .NetFramework v1.1, ASP.Net 1.1, and VS.Net professional
> > 2003 in my Windows Server 2003 machine. I try to create a ASP.NET web
[quoted text clipped - 60 lines]
>
> Hope this helps.