asp.net fileupload

来源:互联网 发布:决战武林灵武升阶数据 编辑:程序博客网 时间:2024/04/29 18:50

(1)上传大小限制

 <system.web>
  <httpRuntime maxRequestLength="102400" executionTimeout="720"/>

参数最大 2091151 是2G

(2)获取扩展名

if (filUpload.PostedFile == null || (System.IO.Path.GetExtension(filUpload.PostedFile.FileName).ToLower() != ".bak"))
{
Response.Write(ShowAlert("The upload file must be *.bak"));
return;
}  
原创粉丝点击