当前位置 : 主页 > 网络编程 > net编程 >

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

来源:互联网 收集:自由互联 发布时间:2023-10-08
原版只能用30天,这个破解版可以长期用了(设置了时间2010-2110). 注册控件: %@ Register TagPrefix="fup" Namespace="OboutInc.FileUpload" Assembly="FileUpload" % 调用控件: form runat="server" id="form1" input

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

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


注册控件:

<%@ 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)));
}
文件结构:
下载地址:FileUploadProgress.rar




网友评论