我正在使用 IIS6 开发站点。我正在尝试在服务器上上传图像,但没有上传超过 45 kb 的图像。上传超过 45kb 的图像后,我得到了空白页面,我也在 web.config 中进行了更改。这是 web.config 信息:
<httpRuntime executionTimeout="180" maxRequestLength="10485760">
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="10485760" ></requestLimits>
</requestFiltering>
</security>
</system.webServer>
请帮忙。提前致谢