AsyncFileUpload内容安全策略指令

时间:2018-01-10 10:25:58

标签: c# asp.net ajaxcontroltoolkit

我正在尝试将文件上传到我使用AjaxToolKit的AsyncFileUpload部分构建的应用程序。该文件是一个50mb的ZIP文件,上传时我收到以下弹出窗口:

enter image description here

当我点击OK时,我会得到以下方框

enter image description here

如果我进入开发人员工具,我会在chrome的控制台选项卡中收到以下错误消息

内容安全策略指令'object-src'的值包含无效字符

The value for Content Security Policy directive 'object-src' contains an invalid character

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:1)

您似乎需要像See code in use here中一样修改Web.config:

result

或IIS 7或更高版本:

<configuration>
    <system.web>
        <httpRuntime maxRequestLength="1048576" />
    </system.web>
</configuration>