.net上传文件大小

上传的文件默认的大小是4M(4096),可以在web.config中修改文件大小的限制:  
  <configuration>    
  <system.web>    
  <httpRuntime   maxRequestLength="10000"    
  useFullyQualifiedRedirectUrl="true"    
  executionTimeout="45"/>    
  </system.web>    
  </configuration>

你可能感兴趣的:(.net)