原版只能用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="上传" /> <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))); }
本文转自曾祥展博客园博客,原文链接:http://www.cnblogs.com/zengxiangzhan/archive/2010/01/18/1651006.html,如需转载请自行联系原作者