asp.net允许上传的文件的最大为4M

如果想要传更大的需要更改web.config文件

<system.web>
    <httpRuntime   maxRequestLength="1048576"   executionTimeout="3600"   />

</ststem.web>