0

我正在启动我的第一个网站。我已经发布了它,我收到了这个错误。

 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. 

现在网站在线,我应该使用什么信任级别?

<system.web>
<securityPolicy>
<trustLevel name="Full" policyFile="internal"/>
</securityPolicy>
</system.web>

现在我将网站上线,还有其他我必须注意的 web.config 设置吗?喜欢更改连接字符串?

4

2 回答 2

0

通过使用修复它

<trust level="Full" />

里面<system.web>

于 2013-08-20T19:30:10.230 回答
0

根据您的主机提供商,您可能还需要取出编译器。

根据我使用 GoDaddy 的经验,我不得不注释掉我的编译器并设置 trust level="Full"。

将您的自定义错误设置为 On 或 RemoteOnly,以便最终用户看不到任何错误消息,即“黄屏死机”。

<system.web>
      <trust level="Full" />
      <customErrors mode="On" />
      ..... other settings in system.web ...
</system.web>

<system.codedom>
     <compilers>
       <!-- <compiler language="..." /> -->
       <!-- <compiler language="..." /> -->
     </compilers>
</system.codedom>
于 2018-12-05T03:44:02.467 回答