FileUpload上传限制疑问
添加FileUpload控件后.配置web.config
<httpRuntime maxRequestLength="2097151" executionTimeout="3600"/>
依然没有作用.是我写错了?
请朋友帮忙
------解决方案--------------------我刚刚试了下 可以用,我的web.config中是这样的
<httpRuntime executionTimeout="3600" maxRequestLength="1048576"/>
------解决方案--------------------<httpRuntime maxRequestLength="4096" />
大小是4M,参数最大是2091151,2G左右大小
------解决方案-------------------- <system.web>
<httpRuntime maxRequestLength="2000000" executionTimeout="3600"/>
可以轻松上传两G的文件