在服务器上引发安全异常,在localhost上运行

时间:2015-03-29 06:20:12

标签: asp.net exception

在localhost上运行我的项目时,它运行良好。但是当我在服务器上部署它时,我遇到了这种类型的错误。 错误: 说明:The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.

1 个答案:

答案 0 :(得分:2)

  

它需要获得服务器安全级别限制的原因   将其修改为Web.Config文件。

  

您可以要求服务供应商更改您的安全级别   宿主

<system.web>
  <securityPolicy>
    <trustLevel name="Full/High/Medium/Low/Minimal" policyFile="internal"/>
  </securityPolicy>
</system.web>

参见参考Here