在web.config中添加httpRuntime元素,如下:
<configuration>
<system.web>
<httpRuntime maxRequestLength="8192"
useFullyQualifIEdRedirectUrl="true"
executionTimeout="45"
versionHeader="1.1.4128"/>
</system.web>
</configuration>
其中maxRequestLength屬性就是限制上傳大小的,如設為"8192"即為8M。
http://pyt5208.cnblogs.com/archive/2006/07/10/446994.Html