微软自带上传控件FileUpload介绍:
其默认能上传大小为4096 KB ,如果使用FileUpload控件上传文件超过4096KB就会是运行的网页页面运行挂掉。
但是我们可以对FileUpload控件上传大小进行重新配置,避免这种问题。
上传大文件,Web.config中的配置 :
在web.config中的<system.web></system.web>内加入如下代码:
<httpRuntime executionTimeout="600" maxRequestLength="51200" use