How to start ASP.NET web server?

B

Brett

I get this message in VS.NET when opening an ASP.NET web application that
was created on another machine:

VS.NET has detected that the specific web server is not running ASP.NET
v1.1. You will be unable to run ASP.NET web applications or services.

The ASP.NET State Service is running but I receive this error when starting
the ASP.NET Admin Service:

Could not start the ASP.NET Admin Service service on Local Computer.
Error 2: The system cannot find the file specified.

Any idea how I get the web server going that allows aspx pages to render?

Thanks,
Brett
 
N

Nick Malik [Microsoft]

You need to install the correct version of ASP.Net on your web server. It
is quite possible that you only have v 1.0 running on that server.

Open a command line.
Change directories to the following:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322
and run
aspnet_regiis.exe -i


--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
B

Brett

Thanks much. This worked really well.

If you don't mind, can you take a look at my recent post in this group, 'Why
does aspx pages crash my machine?' dated 4/14/05 7:38 PM (EST). I can't
find any information on what is causing that problem or how to fix it. It
occurs on a different machine then the one I had the ASP.NET web server
issue.

Thanks,
Brett
 
R

Rafal Gwizdala

Brett said:
I get this message in VS.NET when opening an ASP.NET web application that
was created on another machine:

VS.NET has detected that the specific web server is not running ASP.NET
v1.1. You will be unable to run ASP.NET web applications or services.

The ASP.NET State Service is running but I receive this error when
starting the ASP.NET Admin Service:

Could not start the ASP.NET Admin Service service on Local Computer.
Error 2: The system cannot find the file specified.

Any idea how I get the web server going that allows aspx pages to render?

Thanks,
Brett

Please make sure that no other application is listening on port 80. I had a
similar (but not identical) problem with Skype that auto-configured itself
to use port 80.

Best regards
Rafal Gwizdala
 
U

udaybdt

u go to path
c:\windows\microsoft.net\framework\v.1.1.4322
and register aspnet_regiis \i
and try

**********************************************************************
Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top