Web.config配置上传文件大小限制
配置文件中 maxRequestLength 位置如下
<configuration> <system.web> <httpRuntime maxRequestLength="40960" /> </system.web> </configuration>
maxRequestLength 默认大小为40960,单位为k,该值限制了可上传到服务器的最大文件大小
用心做好每一件事,结果会给你最大的惊喜!
配置文件中 maxRequestLength 位置如下
<configuration> <system.web> <httpRuntime maxRequestLength="40960" /> </system.web> </configuration>
maxRequestLength 默认大小为40960,单位为k,该值限制了可上传到服务器的最大文件大小