ASP.NET & IIS 5.0???

  • Thread starter Thread starter Terry Olsen
  • Start date Start date
T

Terry Olsen

I'm running IIS 5.0 as a web server on Win2K Pro. When I try to create a
new ASP.NET Web Application I get a message saying that ASP.NET Version 1.1
is not installed (or some message like that). So, I've got a few questions.

Do I need IIS 6.0 to run ASP.NET Web Apps?
if not, how do I get it to work with IIS 5.0?
Can I install IIS 6.0 on my Win2K Pro computer?
if so, where can I download IIS 6.0?
 
Sounds like you haven't registered ASP .Net on your IIS server.

Search .Net help for Aspnet_regiis.exe for full details.

Gary
 
From MSDN ...

From a command prompt window, run the following command:
\WINNT\Microsoft.NET\Framework\version\aspnet_regiis -iWhere version is the
version number of the .NET Framework is installed on your machine (v1.0.370,
for example).


Gary
 
There is a difference between installing the .NET Framework and registering
the ASPNET_ISAPI DLL to work with IIS. To do this, you need to call
aspnet_regiis -i from the %windir%\microsoft.net\framework\v1.1.4322
directory.

Chris

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