📄 loading.asp
字号:
<%@language=vbscript enablesessionstate=false lcid=1033%>
<!-- #include file="ClsFileUp.asp" -->
<%
Response.CacheControl = "no-cache"
Response.Expires = -1
progressID = Request.QueryString("ProgressID")
Set upload = New DoteyUpload
Set Info = upload.GetProgressInfo(progressID)
If Info.ReadyState = "loaded" Then
%>
文件上传结束
<script>window.close();</script>
<%
Else
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="refresh" content="1;url=Loading.asp?ProgressID=<%=ProgressID%>">
<title>文件上传 已上传<%= Info.Percentage %></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">
body,td,th {
color: #000000;
font: 12px Tahoma, "宋体";
}
body {
background-color:buttonface;
}
/*进度条边框样式*/
#tdUpBar {
height:20px;
padding:1px;
border:1px inset threedshadow;
}
/*进度条主体样式*/
#imgUpBar {
height:16px;
background-color:appworkspace;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>
<body onselectstart="return false;" ondragstart="return false;">
<table align="center" width="100%" border="0" cellspacing="4" cellpadding="4">
<tr>
<td>
<table align="center" width="100%" border="0" cellspacing="0" cellpadding="0" style="TABLE-LAYOUT: fixed; margin-top:5px; margin-bottom:5px;">
<tr>
<td width="95%" style="WORD-WRAP: break-word;">文件:共 <font color="#FF0000">1</font> 个</span> 总大小:<%= Info.TotalSize %></td>
</tr>
<tr>
<td width="95%" style="WORD-WRAP: break-word;">已用时间:<%= Info.ElapsedTime %> 剩余时间:<%= Info.TimeLeft %> 进度:<%= Info.Percentage %></td>
</tr>
<tr>
<td width="95%" style="WORD-WRAP: break-word;"><div style="WORD-WRAP: break-word; width:95%; margin-right:3px;"><img src="../../Images/Up_Bar.gif" id="imgUpBar" width="<%= Info.Percentage %>" /></div></td>
</tr>
<tr>
<td width="95%" style="WORD-WRAP: break-word;">平均速度:<%= Info.TransferRate %> 已经上传:<%= Info.SizeCompleted %></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<%
End If
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -