ASP.NET Extensions

  • Thread starter Thread starter Lee Forst
  • Start date Start date
L

Lee Forst

What is all required to run an ASP.NET application on an
IIS server? Of course you would need to have the .NET
Framework installed, but do you have to have the ASP.NET
Extensions installed? What do the extensions give you.

Thanks
 
You have to have the .NET framework in place, and you have to register the
web site to map the various file extensions to the appropriate handler. That
way, when you get in a request to *.aspx, IIS knows to hand it over to the
ASP.NET runtime rather than just spitting back the plain text source code.
aspnet_regiis.exe will do this for you.
 
Lee,

You simply have to have the .NET Framework installed and ASP.NET has to be
registered. To register ASP.NET, you run aspnet_regiis -i from the
Framework directory.

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

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

--------------------
 
Thanks. What ASP.NET extensions are there? My server
Admin is telling me that there are some installed on our
development IIS server. Is there something that allows
remote debugging?

-----Original Message-----
Lee,

You simply have to have the .NET Framework installed and ASP.NET has to be
registered. To register ASP.NET, you run aspnet_regiis - i from the
Framework directory.

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

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

--------------------
Content-Class: urn:content-classes:message
From: "Lee Forst" <[email protected]>
Sender: "Lee Forst" <[email protected]>
Subject: ASP.NET Extensions
Date: Fri, 21 Nov 2003 09:41:26 -0800
Lines: 6
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Thread-Index: AcOwVq/VmYQR1QhrR0y+d3mGdVRhpA==
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:191919
NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

What is all required to run an ASP.NET application on an
IIS server? Of course you would need to have the .NET
Framework installed, but do you have to have the ASP.NET
Extensions installed? What do the extensions give you.

Thanks

.
 
The remote debugging components may be installed. However, they are not
ASP.NET extensions. It is a Visual Studio .NET component. There really is
no such thing as ASP.NET extensions.

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

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


--------------------
Content-Class: urn:content-classes:message
From: <[email protected]>
Sender: <[email protected]>
References: <[email protected]>
Subject: RE: ASP.NET Extensions
Date: Fri, 21 Nov 2003 10:49:45 -0800
Lines: 55
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Thread-Index: AcOwYDt2+B/rE4yVSyC5jDOvi0ChZw==
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:191940
NNTP-Posting-Host: tk2msftngxa08.phx.gbl 10.40.1.160
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Thanks. What ASP.NET extensions are there? My server
Admin is telling me that there are some installed on our
development IIS server. Is there something that allows
remote debugging?

-----Original Message-----
Lee,

You simply have to have the .NET Framework installed and ASP.NET has to be
registered. To register ASP.NET, you run aspnet_regiis - i from the
Framework directory.

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

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

--------------------
Content-Class: urn:content-classes:message
From: "Lee Forst" <[email protected]>
Sender: "Lee Forst" <[email protected]>
Subject: ASP.NET Extensions
Date: Fri, 21 Nov 2003 09:41:26 -0800
Lines: 6
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Thread-Index: AcOwVq/VmYQR1QhrR0y+d3mGdVRhpA==
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:191919
NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

What is all required to run an ASP.NET application on an
IIS server? Of course you would need to have the .NET
Framework installed, but do you have to have the ASP.NET
Extensions installed? What do the extensions give you.

Thanks

.
 
Back
Top