1Asp.net 2.0 用 FileUpload 控件实现多文件上传 用户控件public partial class UpMultiFileControl2 : System.Web.UI.UserControl
  2}

 

(三). 改变上传文件大小和时间限制

       <httpRuntime>
            executionTimeout="110"              //上传等待时间
            maxRequestLength="4096"        //上传文件大小,默认为4M
       </httpRuntime>

       上传文件大小是由上面两个参数所决定的.  涉及到安全因素,不要设得太大.    

相关文章: