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

来源:互联网 发布:splice视频编辑软件 编辑:程序博客网 时间:2024/04/30 10:24

原版只能用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   
原创粉丝点击