我下载的四库全书的Bookshop运行时候出现这个错误,谁能帮我看看?
“/BookShop”应用程序中的服务器错误。--------------------------------------------------------------------------------
对注册表项 HKEY_CLASSES_ROOT\BookShop.BLL.Account 的访问被拒绝。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.UnauthorizedAccessException: 对注册表项 HKEY_CLASSES_ROOT\BookShop.BLL.Account 的访问被拒绝。
ASP.NET 未被授权访问所请求的资源。请考虑授予 ASP.NET 请求标识访问此资源的权限。ASP.NET 有一个在应用程序没有模拟时使用的基进程标识(通常,在 IIS 5 上为 {MACHINE}\ASPNET,在 IIS 6 上为网络服务)。如果应用程序正在通过 <identity impersonate="true"/> 模拟,则标识将为匿名用户(通常为 IUSR_MACHINENAME)或经过身份验证的请求用户。
若要授予 ASP.NET 对文件的写访问权,请在资源管理器中右击该文件,选择“属性”,然后选择“安全”选项卡。单击“添加”添加适当的用户或组。突出显示 ASP.NET 帐户,选中所需访问权限对应的框。
源错误:
行 88:
行 89: // Send the order to the middle tier
行 90: OrderInsert order = new OrderInsert();
行 91: newOrder.OrderId = order.Insert(newOrder);
行 92:
源文件: D:\SHOP\CodeResource\Web\ProcessFlow\CartController.cs 行: 90
堆栈跟踪:
[UnauthorizedAccessException: 对注册表项 HKEY_CLASSES_ROOT\BookShop.BLL.Account 的访问被拒绝。]
Microsoft.Win32.RegistryKey.Win32Error(Int32 errorCode, String str) +74
Microsoft.Win32.RegistryKey.CreateSubKey(String subkey) +503
System.Runtime.InteropServices.RegistrationServices.RegisterManagedType(Type type, String strAsmName, String strAsmVersion, String strAsmCodeBase, String strRuntimeVersion) +213
System.Runtime.InteropServices.RegistrationServices.RegisterAssembly(Assembly assembly, AssemblyRegistrationFlags flags) +261
System.EnterpriseServices.RegistrationDriver.ClassicRegistration(Assembly asm)
[RegistrationException: 无法注册程序集“BookShop.BLL, Version=3.2.1.0, Culture=neutral, PublicKeyToken=a7987b61c51ca872”。]
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +264
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +877
System.EnterpriseServices.RegistrationHelperTx.InstallAssemblyFromConfig(RegistrationConfig& regConfig, Object sync)
System.EnterpriseServices.RegistrationHelper.TryTransactedInstall(RegistrationConfig regConfig)
System.EnterpriseServices.RegistrationHelper.InstallAssemblyFromConfig(RegistrationConfig& regConfig)
System.EnterpriseServices.RegistrationHelper.InstallAssembly(String assembly, String& application, String partition, String& tlb, InstallationFlags installFlags)
System.EnterpriseServices.RegistrationHelper.InstallAssembly(String assembly, String& application, String& tlb, InstallationFlags installFlags)
System.EnterpriseServices.RegistrationHelper.System.EnterpriseServices.Thunk.IThunkInstallation.DefaultInstall(String asm)
System.EnterpriseServices.Thunk.Proxy.RegisterAssembly(Assembly assembly)
System.EnterpriseServices.Thunk.Proxy.LazyRegister(Guid id, Type serverType, Boolean checkCache)
System.EnterpriseServices.Thunk.Proxy.CoCreateObject(Type serverType, Boolean bQuerySCInfo, Boolean& bIsAnotherProcess, String& uri)
System.EnterpriseServices.ServicedComponentProxyAttribute.CreateInstance(Type serverType)
System.Runtime.Remoting.Activation.ActivationServices.IsCurrentContextOK(Type serverType, Object[] props, Boolean bNewObj) +74
BookShop.Web.ProcessFlow.CartController.PurchaseCart() in D:\SHOP\CodeResource\Web\ProcessFlow\CartController.cs:90
BookShop.Web.OrderProcess.OnLoad(EventArgs e) in D:\SHOP\CodeResource\Web\OrderProcess.aspx.cs:31
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
--------------------编程问答-------------------- 给用户加权限。
1.enable anonymous access in IIS
2.在计算机用户管理里面,把相关的用户加入administrators组 --------------------编程问答-------------------- 我加了 不行,奇怪 --------------------编程问答-------------------- 权限问是,楼主在IIS里面设置一下ASP.NET权限,改完后重启IIS> 就OK了,
楼主给分先! --------------------编程问答-------------------- <identity impersonate="true" userName="系统用户" password="密码" />
给相应目录添加asp.net权限
补充:.NET技术 , ASP.NET