选择一个文件,也可以正确上传至服务器,但您会发现文件大于2048的时候,出现:Internet Explorer显示 "The page cannot be
displayed - Cannot find server or DNS Error",并且是怎么也catch不了这个错误。
解决的办法如下:
在web.config文件中增加上面代码,将可以解决上诉文件,这样小于10M的文件都没有问题
<system.web>
<httpRuntime executionTimeout="1000" maxRequestLength="10240" useFullyQualifiedRedirectUrl="false"/>
</system.web>
时间: 2024-11-13 10:10:07