ASP.NET无法访问IIS元数据库

前端之家收集整理的这篇文章主要介绍了ASP.NET无法访问IIS元数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何解决这个问题?

我使用的是asp.net 2.0,vs2005和IIS 5.1。

使用Windows XP SP3。

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). For information on modifying Metabase permissions,please see http://support.microsoft.com/?kbid=267904.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[HostingEnvironmentException: Failed to access IIS Metabase.]
   System.Web.Configuration.MetabaseServerConfig.MapPathCaching(String siteID,VirtualPath path) +3591442
   System.Web.Configuration.MetabaseServerConfig.System.Web.Configuration.IConfigMapPath2.MapPath(String siteID,VirtualPath vpath) +9
   System.Web.Hosting.HostingEnvironment.MapPathActual(VirtualPath virtualPath,Boolean permitNull) +169
   System.Web.CachedPathData.GetConfigPathData(String configPath) +389
   System.Web.CachedPathData.GetConfigPathData(String configPath) +243
   System.Web.CachedPathData.GetApplicationPathData() +68
   System.Web.CachedPathData.GetVirtualPathData(VirtualPath virtualPath,Boolean permitPathsOutsideApp) +3536567
   System.Web.Configuration.RuntimeConfig.GetLKGRuntimeConfig(VirtualPath path) +189

解决方法

ASPNET用户的权限尚未正确设置。

你在运行什么版本的ASP.NET?

尝试

Start -> Run 
Type cmd <HIT RETURN>
Type c:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i <HIT RETURN>

或建议

aspnet_regiis.exe -ga ASPNET
原文链接:https://www.f2er.com/aspnet/252683.html

猜你在找的asp.Net相关文章