asp.net文件上传进度条控件(破解版~没有时间限制) 多项自定义

原版只能用30天,这个破解版可以长期用了(设置了时间2010-2110).

曾祥展

 

注册控件:

<%@ Register TagPrefix="fup" Namespace="OboutInc.FileUpload" Assembly="FileUpload" %>

 

调用控件:

<form runat="server" id="form1">
  <input type="file" name="myFile1" /><br/>
  <input type="file" name="myFile2" /><br/>
  <input type="file" name="myFile3" /><br/>
  <ASP:LinkButton runat="server" text="上传" />
  &nbsp;&nbsp;&nbsp;
  <ASP:LinkButton runat="server" text="取消" onClientClick="Cancel(); return false;" /><br/>
  <br/>
 <fup:FileUploadProgress 
       OnClientProgressStopped   = "function(){alert('文件已上传');}"
       OnClientProgressStarted   = "Clear"
       OnClientServerException   = "ServerException"
       ShowUploadedFiles         = "true"
       runat                     = "server"
       ID                        = "uploadProgress"
       InnerFiles                = "true"
       StyleFile                 = "fup_styles/myStyle.css"
  LocalizationFile="fup_localization/en.xml" />
       

后台代码:

OboutFileCollection files = uploadProgress.Files;           
for(int i=0; i < files.Count; i++)
{
   OboutPostedFile file = files[i];
   file.SaveAs(MapPath("~/Uploaded/"+Path.GetFileName(file.FileName)));
}
文件结构:
曾祥展2  下载地址:FileUploadProgress.rar       
posted @ 2010-01-18 20:53  曾祥展  阅读(7684)  评论(37编辑  收藏  举报