how to configure win2003 server for asp.net access

  • Thread starter Thread starter anthonymelillo
  • Start date Start date
A

anthonymelillo

I have a windows 2003 server and would like to create ASP.Net applications
on it but I do not know the properly security,permissions or configuration
to setup the server properly.

I installed the ASP.Net services from Add/Remove Windows Components to the
server. But I do not know what to configure directories or such in order to
get this to work.

Any help is greatly appreciated. Thanks
 
Before you can use dynamic content pages with IIS 6.0, you must first allow
it to execute.

Go to your IIS manager, expand the local machine and select the Web Service
Extesions folder.
Select ASP.NET vx.x.xxxx and select "Allow".

You should now be able to develop and run ASP.NET applications.

There are other considerations with IIS 6.0 as well, namely setting up
Application Pools and Web Sites, etc. The Help files can get you started
there.

John Sturgeon, MCP, MCSD
BizTech Solutions, Inc.
 
If IIS was installed prior to installing ASP.Net, you should be able to run
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe to install
the ISAPI on the web server. Other than that, there is nothing special to
configure.

--
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
I definitely had IIS installed on this server before I am installing
ASP.net.

So what switches do I use with the aspnet_regiis.exe ?

Thanks
 
Ok, I will check that. What do I have to do to allow me to create ASP Pages
on that server ?

Thanks
 
So what switches do I use with the aspnet_regiis.exe ?

Oh. Sorry. -i (for install).

--
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top