progressupload.htm
(上传文件的前台提交,我们让进度条在这个里面显示)
</P><P></P><P><html></P><P><body></P><P></P><P>
<script language="javascript"></P><P><!--</P>
<P>theUniqueID = (new Date()).getTime() % 1000000000;</P><P>function s() file://让数据提交的同时执行显示进度条的函数</P><P>{</P><P>
bar(); file://开始执行反映上传情况的函数</P><P>
document.myform.action = "progressupload.asp?ID=" + theUniqueID;
file://处理上传数据的程序</P><P>
document.myform.target="up" file://将提交的数据放在一个名字是up隐藏的iframe里面处理,这样提交的页面就不会跳转到处理数据的页
document.myform.submit(); file://提交表单</P><P></P><P></P><P>}
</P><P>function bar()</P><P>{</P><P>
bar1.style.display= ; file://让显示上传进度显示的层的可见</P><P>
var timeoutid=null; file://这个变量是作定时器的ID</P><P>
var oXMLDoc = new ActiveXObject( MSXML );
file://创建 MSXML 对象</P><P>
sURL = "progressbar.asp?ID=" + theUniqueID + "&temp="+Math.random();
file://获取上传状态数据的地址</P><P>
oXMLDoc.url = sURL;
file://load数据
var oRoot=oXMLDoc.root;
file://获取返回xml数据的根节点
if(oRoot.children != null) {
if (oRoot.children.item(0).text-100==0) file://文件上传结束就取消定时器
clearTimeout(timeoutid)
PercentDone.style.width=oRoot.children.item(0).text+"%"; file://设置进度条的百分比例
file://根据返回的数据在客户端显示
min.innerHTML=oRoot.children.item(1).text; file://显示剩余时间(分钟)
secs.innerHTML=oRoot.children.item(2).text; file://显示剩余时间(秒钟)
BytesDone.innerHTML=oRoot.children.item(3).text; file://已上传数据大小
BytesTotal.innerHTML=oRoot.children.item(4).text; file://总大小
BytesPerSecond.innerHTML=oRoot.children.item(5).text; file://传输速率
Information.innerHTML=oRoot.children.item(6).text; file://上传信息
}
if (oRoot.children.item(0).text-100<0) file://只要文件没有传完,就每隔多少时间获取一次数据
timeoutid = setTimeout("bar()",50)
file://这里设定时间间隔是0.05秒,你也可以根据你的情况修改获取数据时间间隔
}</P><P>//--></P><P></script>nbsp; </tr></P><P>
</table></P><P> </td></P><P> </tr></P><P> <tr></P><P><td></P><P>
<table border="0" width="100%"></P><P><tr></P><P> <td><font face="Verdana, Arial, Helvetica, sans-serif" size="1">
剩余时间:</font></td></P><P>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="1"></P><P>
<span id=min></span>分</P><P><span id=secs></span> 秒 </P><P>
(<span id=BytesDone></span> KB of </P><P><span id=BytesTotal></span> KB 已上传)</font></td></P><P>
</tr></P><P> <tr></P><P>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="1"></P><P>
传送速度:</font></td></P><P>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="1"></P><P>
<span id=BytesPerSecond></span> KB/秒</font></td></P><P>
</tr></P><P> <tr></P><P>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="1">信息:</font></td></P><P>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><span id=Information>
</span></font></td></P><P> </tr></P><P> </table></P><P> </td></P><P> </tr></P><P> <tr></tr></P><P></table></P><P></div></P><P><iframe name="up" style="display:none"></iframe></P><P></form></P><P></P><P></body></P><P>
</html></P><P></P><P>progressbar.asp(返回上传状况数据的文件)
</P><P></P><P><%@EnableSessionState=False%></P><P><%</P><P>
On Error Resume Next</P><P>Set theProgress = Server.CreateObject("ABCUpload4.XProgress") 创建上传组件对象</P><P>theProgress.ID = Request.QueryString("ID")</P><P> 将返回数据以xml格式输出
</P><P>%></P><P><?xml version="1.0" encoding="gb2312" ?></P><P><plan></P><P> <PercentDone><%=theProgress.PercentDone%></PercentDone></P><P>
<min><%=Int(theProgress.SecondsLeft/60)%></min></P><P>
<secs><%=theProgress.SecondsLeft Mod 60%></secs></P><P>
<BytesDone><%=Round(theProgress.BytesDone / 1024, 1)%></BytesDone></P><P>
; <BytesTotal><%=Round(theProgress.BytesTotal / 1024, 1)%></BytesTotal></P><P> <BytesPerSecond><%=Round(theProgress.BytesPerSecond/1024, 1)%></BytesPerSecond></P><P> <Information><%=theProgress.Note%></Information></P><P></plan></P><P></P>
<P>progressupload.asp(处理上传文件)</P><P></P><P><%@EnableSessionState=False%>
</P><P><%</P><P>Response.Expires = -10000</P><P>Server.ScriptTimeOut = 300</P>
<P></P><P>Set theForm = Server.CreateObject("ABCUpload4.XForm")</P>
<P>theForm.Overwrite = True</P><P>theForm.MaxUploadSize = 8000000</P>
<P>theForm.ID = Request.QueryString("ID")</P><P>Set theField = theForm("filefield1")(1)
</P><P>If theField.FileExists Then</P><P> theField.Save theField.FileName</P><P>End If</P><P>%></P><P></P><P><html></P><P><body></P><P>传送结束</P><P></body></P><P>
</html></P><P></P><P></P><P>
对于其他组件上传,原理也就差不多了,只是方法不一样罢了
希望大家有什么意见和建议和我联系:)
junminliu@msn.com
</P><P></P><P>
<form name="myform" method="post" action="progressupload.asp" enctype="multipart/form-data" target=up>
</P><P><input type="file" name="filefield1"><br></P><P><input type="button" name="dosubmit" value="Upload" onclick="s()"><br></P><P><div id=bar1 style="display:none">
</P><P><table border="0" width="100%"></P><P> <tr></P><P>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>传送:</b></font></td></P><P> </tr></P><P>
<tr bgcolor="#999999"></P><P> <td></P><P>
<table border="0" width="" cellspacing="1" bgcolor="#0033FF" id=PercentDone></P><P>
<tr></P><P><td><font size=1> </font></td></P><P>&