|
|
|
|
|
|
Creating ASP.net user in Windows XP
|
|
|
|
|
|
|
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 application event log of the web server. Please review this log entry to discover what caused this error to occur.
|
|
Solution:
You should install IIS,
framework installation installs ASP.NET automatically only if IIS is already installed.
As you have installed IIS after the Framework you need to manually register ASP.NET.
On %SYSTEM/Microsoft.NET\Framework\Version you'll see aspnet_regiis.exe.
Run that on command line with -i switch (e.g "aspnet_regiis -i").
That'll register ASP.NET to your machine as well as creates the ASPNET user.
This should solve your problem with the Server Application Unavailable error message.
|
|
|
|
|
|