xp中配置aps.net站點 出現的iis access fail問題解決方法

錯誤描述:
ASP.NET Error: Failed to access IIS metabase

This error showed up prior to the error "Mutex cannot be created" which I descirbed in my last post. I wrote down this to help other poor guys saving their poor time.
The more complete error message is as following:
Failed to access IIS metabase.
Description: An unhandled exception occurred during the execution of the
current web request.
Please review the stack trace for more information about the error and
where it originated in the code.

Exception Details: System.Web.Hosting.HostingEnvironmentException:
Failed to access IIS metabase.

The process account used to run ASP.NET must have read access to the IIS
metabase (e.g. IIS://servername/W3SVC).
解決方法:
1.進入DOS命令行
2.cd /
3.cd c:/windows/microsoft.net/framework/v2.0.50727
4.然後執行命令 aspnet_regiis -ga administrator //注:administrator爲當前登錄用戶名
5.aspnet_regiis -i -enable
6.net stop iisadmin
7.net start w3svc
//對了說一下,aspnet_regiis.exe這個程序是在c:/windows/microsoft.net/framework/v2.0.50727目錄下的,如果你的不是windows xp sp2,那麼請您搜尋該程序,只要執行相同的命令即可.
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章