ASP.NET 2.0 Application on IIS 5 Resulting in Error (aspnet_wp.exe (PID: XXXX) stopped unexpectedly.)

后端 未结 4 1778
野的像风
野的像风 2021-01-14 05:13

After hosting an ASP.NET 2.0 web application on a windows 2000 server(IIS 5). I was unable to browse the web site.

The following error message was displayed on the b

4条回答
  •  抹茶落季
    2021-01-14 05:47

    From the looks of it you have an incorrect permission set for your ASP.NET installation. Typically the best bet it to just uninstall and re-install the ASP.NET portion. You can do this easily by the following.

    1. Open command prompt to C:\windows\microsoft.net\framework\v2.0.50727
    2. run the following command: aspnet_regiis.exe -u
    3. run the following command: aspnet_regiis.exe -i

    That will uninstall ASP.NET and re-install, that should then establish the proper permissions for the account.

提交回复
热议问题