ASP.NET Razor站点中的最大文件上载大小错误

时间:2013-02-21 07:33:51

标签: asp.net webmatrix-2

我使用Webmatrix 2构建了一个视频网站,但是当我尝试上传最少两个视频.webm和.mp4(在这种情况下两个文件加起来大约为34mb)时,我收到此错误... “请求过滤模块配置为拒绝超过请求内容长度的请求。”

该站点在我的计算机上本地运行,其中包含IIS 8的实例。我尝试过添加Maxrequest和executeTimeout而没有任何运气。

     web.config <httpRuntime maxRequestLength="2000000" executionTimeout="600" />

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:2)

对于任何有兴趣的人,我都应用以下方法对其进行整理。

Read this article that explains it well:

<system.webServer>
    <security>
        <requestFiltering>
            <requestLimits maxAllowedContentLength="524288000"/>
        </requestFiltering>
    </security>
 </system.webServer>