| Venkat 2002-10-05, 6:41 pm |
|
>-----Original Message-----
>when ever i run my aspx page it fails to load
successfully
>in browser. Instead of displaying my "aspx" page IE show
>the following error in browser window.
>
>Error Messag is as under,
>
>Server Application Unavailable
>The web application you are attempting to access on this
>web server is currently unavailable. Please hit
>the "Refresh" button in your web browser to retry your
>request.
>
>Administrator Note: An error message detailing the cause
>of this specific request failure can be found in the
>system event log of the web server. Please review this
log
>entry to discover what caused this error to occur.
>
Hello,
The problem related to security... The error says to
you look at the events. Have you seen in event viewer?
Please look at the event viewer. There, you can see the
error related to user/password.
Steps to solve...
1. Goto Config folder.
may be like this:
C:\WINNT\Microsoft.NET\Framework\v1.0.3705\CONFIG
2. Open machine.config file (using notepad or any text/xml
editor)
3. Goto <ProcessModel> section
4. Change high privilege user/password to launch asp_net
application
Currently it uses "machine/AutoGenerate". This is run as
low privilege user account named "ASPNET" Or simply change
enable="false" if you don't want customize all these
configuration. Best of luck for your development with .NET
--From .NET Community
--Venkat
|