📄 framebar.asp
字号:
<%@EnableSessionState=False%>
<% Response.Expires = -1
on error resume next
%>
<HTML>
<HEAD>
<TITLE>正在上传文件,请稍候。。。 </TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type='text/css'>
td
{font-family:arial; font-size: 9pt }
.bt {
font-size: 9pt;
width: 60px;
border-style: ridge;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
background-color: #EFEBDE;}
</style>
</HEAD>
<% If Request("b") = "IE" Then %> <!-- Internet Explorer -->
<BODY BGCOLOR="#EFEBDE">
<script language="JavaScript">
<!--
function Stopupload()
{
if (typeof(window.opener)!="undefined"){
try{
window.opener.document.execCommand("stop");
}
catch(e){}
}
else if(typeof(window.dialogArguments)!="undefined"){
try{
window.dialogArguments.document.execCommand("stop");
}
catch(e){}
}
window.close();
}
//-->
</script>
<IFRAME src="bar.asp?PID=<%= Request("PID") & "&to=" & Request("to") %>" title="Upload Progress" noresize scrolling=no
frameborder=0 framespacing=10 width=369 height=65></IFRAME>
<TABLE BORDER="0" WIDTH="100%" cellpadding="2" cellspacing="0">
<TR><TD ALIGN="center"><input type="button" value="取消上传" class="bt" onclick="Stopupload()"></TD></TR>
</TABLE>
</BODY>
<%Else%> <!-- Netscape Navigator etc ... -->
<FRAMESET ROWS="65%, 35%" COLS="100%" border="0" framespacing="0" frameborder="NO">
<FRAME SRC="bar.asp?PID=<%= Request("PID") & "&to=" & Request("to") %>" noresize scrolling="NO" frameborder="NO" name="sp_body">
<FRAME SRC="note.htm" noresize scrolling="NO" frameborder="NO" name="sp_note">
</FRAMESET><noframes></noframes>
<%End If%>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -