我尝试上传文件(大小: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>
但仍然没有运气!
为什么失败的任何建议? 我做错了吗?