我有一个应用程序,它在我的本地系统中工作正常但是当我在服务器中运行相同的代码时,它给出了异常
System.Security.SecurityException:请求类型的权限 'System.Web.AspNetHostingPermission,System,Version = 2.0.0.0, Culture = neutral,PublicKeyToken = b77a5c561934e089'失败。
我曾尝试取消阻止dll的安全性,但这并没有解决我的问题。请给我一个解决方案
答案 0 :(得分:0)
我使用caspol.exe
解决了这个问题:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -ag 1 -url "file:////c:/wwwroot/intepub/MyApp/bin/*" FullTrust -exclusive on
将c:/wwwroot/intepub/MyApp/bin/*
替换为DLL的路径。