由于asp.net mvc 2中的文件大小,无法上传文件?

时间:2011-07-14 07:00:40

标签: c# asp.net-mvc-2 iis-6

我正在尝试上传文件大小为80M字节的文件。在我的电脑(cassini服务器)我可以上传文件。在网络服务器(iis 6)上它会抛出一个错误?:

404 - 找不到文件或目录。 您要查找的资源可能已被删除,名称已更改或暂时不可用。

这就是我在web.config中的内容:

  <system.web><httpRuntime maxRequestLength="716800"/></system.web>

1 个答案:

答案 0 :(得分:1)

尝试以下配置设置:

    <system.webServer>
        <security>
            <requestFiltering>
                <!-- 50 * 1024 * 1024 = 52428800 -->
                <requestLimits maxAllowedContentLength="52428800"/>
            </requestFiltering>
        </security>
    </system.webServer>