📄 copystep2.asp
字号:
<!-- #include file = "../include/asphead.asp" -->
<!-- #include file = "../include/function.asp" -->
<%CheckUser()%>
<link href="../include/main.css" rel="stylesheet" type="text/css">
<script ID="clientEventHandlersJS" LANGUAGE="javascript">
<!--
function LocalDC()
{
return true;
}
function Pre()
{
DisableButton();
window.navigate("copystep1.asp")
}
function Next()
{
if(LocalDC()==true)
{
WorkArea.Next();
}
}
function Cancel()
{
var discard;
discard=confirm("放弃复制吗?");
if(discard==true)
{
parent.window.returnValue = "";
parent.window.close();
}
}
function DisableButton()
{
btnCancel.disabled =true;
btnPre.disabled =true;
btnNext.disabled =true;
}
//-->
</script>
<%
dim SheetID
SheetID=Request.Cookies("Temp")("SheetID")
dim CopyRange,CopyTo
if Request.Form("CopyRange")<>"" then
'从上一步来,需要读取保存复制范围
CopyRange=Request.Form("CopyRange")
CopyTo=Request.Form("CopyTo")
Response.Cookies("ImExport")("CopyRange")=CopyRange
Response.Cookies("ImExport")(SheetID & "CopyTo")=CopyTo
Response.Cookies("ImExport").Expires = CookieLife
else
CopyRange=Request.Cookies("ImExport")("CopyRange")
CopyTo=Request.Cookies("ImExport")(SheetID & "CopyTo")
end if
dim fieldselectpage
if SheetID=CopyTo then
fieldselectpage="fieldcopyselect.asp"
else
fieldselectpage="fieldcopyselect2.asp"
end if
%>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<BODY>
<table width="100%" border=0 cellPadding=0 cellSpacing=0>
<tr height=35>
<td>
<b>第2步:选择复制的字段</b>
</td>
</tr>
<tr height=222>
<td>
<iframe id="WorkArea" name="WorkArea" style="visibility:visible" width="100%" height="100%" frameborder="0" src="<%=fieldselectpage%>">
</iframe>
</td>
</tr>
<tr height=28>
<td>
<p id=Prompt></p>
</td>
</tr>
<tr height=30 valign=bottom>
<td>
<table align=center width="50%">
<tr>
<td width="33%"><input id="btnCancel" type="button" value="取消" name="btnCancel" style="cursor:hand; WIDTH: 65px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Cancel()"></td>
<td width="33%"><input id="btnPre" type="button" value="上一步" name="btnPre" style="cursor:hand; WIDTH: 65px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Pre()"></td>
<td width="33%"><input id="btnNext" type="button" disabled value="下一步" name="btnNext" style="cursor:hand; WIDTH: 65px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Next()"></td>
</tr>
</table>
</td>
</tr>
</table>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -