上传300kb文件失败,http错误404

时间:2013-12-26 08:55:07

标签: c# asp.net file-upload web-config request

我尝试上传文件(大小:364kb),我收到http错误404。 我在web.config文件中添加了相关设置:

  <location path="UploadFileServer.axd">
    <system.web>
      <httpRuntime executionTimeout="999999" maxRequestLength="2097151" />
    </system.web>
  </location>

  <system.web>
    <httpRuntime executionTimeout="999999" maxRequestLength="50000"/>
  </system.web>


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

但仍然没有运气!

为什么失败的任何建议? 我做错了吗?

0 个答案:

没有答案