📄 info.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 GoToEdit()
{
document.frmData.target ="_self";
if(frmData.ReferenceField.value==1)
document.frmData.action="editref.asp?RowID=" + frmData.RowID.value ;
else
document.frmData.action="edit.asp?RowID=" + frmData.RowID.value ;
document.frmData.submit();
}
function Cancel()
{
parent.window.returnValue =false;
parent.window.close();
}
//-->
</script>
<%
dim WExcel
set WExcel=server.CreateObject("WExcel.System")
dim RowID,NewRecord,strBody,Success
RowID=Request.QueryString("RowID")
NewRecord="0"
SheetID=Request.Cookies("System")("StructureSheetID")
Success=WExcel.GetFieldStatisticsPage(cint(UserID),cint(SheetID),cint(RowID),strBody,ReferenceField)
CheckErr
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<form METHOD="post" name="frmData">
<table width="100%" border=0 CELLSPACING=0 CELLPADDING="0">
<tr height="35">
<td colspan=5>
<table width="100%" border=0 CELLSPACING=0 CELLPADDING="0">
<tr>
<td height=1 rowspan="3" valign="bottom" width="10%"><IMG height=1 src="../../../images/promptline.gif" width="100%"></td>
<td height=1 rowspan="3" width="1%"><IMG height=22 src="../../../images/leftoff.gif" width=11></td>
<td height=1 valign="center" width="15%"><IMG height=1 src="../../../images/promptline.gif" width="100%"></td>
<td height=1 rowspan="3" width="1%"><IMG height=22 src="../../../images/rightoff.gif" width=11></td>
<td height=1 rowspan="3" width="1%"><IMG height=22 src="../../../images/lefton.gif" width=11></td>
<td height=1 valign="center" width="15%"><IMG height=1 src="../../../images/promptline.gif" width="100%"></td>
<td height=1 rowspan="3" width="1%"><IMG height=22 src="../../../images/righton.gif" width=11></td>
<td height=1 rowspan="3" valign="bottom" width="39%"><IMG height=1 src="../../../images/promptline.gif" width="100%"></td>
</tr>
<tr>
<td height=20 valign=bottom bgcolor="#E0E0E0" style="cursor:hand" onclick="return GoToEdit();">修改</td>
<td height=20 valign=bottom>相关数据</td>
</tr>
<tr>
<td height=1 rowspan="3" valign="bottom"><IMG height=1 src="../../../images/promptline.gif" width="100%"></td>
<td></td>
</tr>
</table>
</td>
</tr>
<tr height=170 valign="top">
<td colspan=5>
<table width="95%" border=0 CELLSPACING="1" CELLPADDING="0">
<%=strBody%>
</table>
</td>
</tr>
<tr height=40 valign=bottom>
<td colspan=5>
<p align=center>
<input id="btnCancel" type="button" value="关闭" name="btnCancel" style="cursor:hand; WIDTH: 50px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Cancel()">
</p>
</td>
</tr>
</table>
<input TYPE="hidden" NAME="ReferenceField" value="<%=ReferenceField%>">
<input TYPE="hidden" NAME="NewRecord" value="<%=NewRecord%>">
<input TYPE="hidden" NAME="RowID" value="<%=RowID%>">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -