Getting ASP.NET Applications to Function Properly on Visual Studio .NET Systems

Learn why ASP.NET applications might not function properly on Visual Studio .NET systems.

Brett Hill

February 24, 2003

1 Min Read
ITPro Today logo

We recently installed Microsoft IIS on our Visual Studio .NET development system, but ASP.NET applications won't function on this system. IIS simply delivers the source code of the .aspx pages. What are we missing?

Windows 2000 Server systems install IIS by default, so IIS is usually present when Visual Studio .NET is installed. When IIS is present, the Visual Studio .NET installation creates several application mappings in IIS that help ASP.NET function properly. The problem you describe occurs when you install IIS after Visual Studio .NET or if you uninstall and reinstall IIS on a server that has ASP.NET enabled. You can remedy this problem by running the program aspnet__regiis.exe from a command line:

%systemroot%microsoft.netframeworkv1.0.370aspnet_regiis.exe ­I

Afterward, you should regis-ter the ASP.NET Internet Server API (ISAPI) extensions as follows:

Regsrvr32 %systemroot%microsoft.netframeworkv1.0.370aspnet_isapi.dll

Note that in most cases, systemroot is winnt.

—Brett Hill

Read more about:

Microsoft
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like