batchresult.asp

来自「学生档案与成绩管理(1)学生档案管理:记录每个学生的档案信息」· ASP 代码 · 共 70 行

ASP
70
字号
<!-- #include file = "../include/asphead.asp" -->
<!-- #include file = "../include/function.asp" -->
<link href="../include/main.css" rel="stylesheet" type="text/css">
<script ID="clientEventHandlersJS" LANGUAGE="javascript">
<!--

function Close() 
{
	if(ModifyCount.value>0)
		parent.window.returnValue = true;
	else
		parent.window.returnValue = false;
	parent.window.close();
}

//-->
</script>

<HTML>
<HEAD>
	<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>

<BODY>

<%
	dim ModifyCount
	ModifyCount=Request.Cookies("Temp")("ModifyCount")
	Response.Cookies("Temp")("ModifyCount")=""
	if ModifyCount="" then
		ModifyCount=0
	end if
	CheckErr
%>

	<table width="100%" border=0 cellPadding=0 cellSpacing=0>
		<tr height=35>
			<td>
				<b>批量修改完成</b>
			</td>
		</tr>
		<tr height=200>
			<td>
				<table width="60%" border=0 cellPadding=0 cellSpacing=0>
					<tr>
						<td>
							已修改行数: <%=ModifyCount%>
						</td>
					</tr>
					<tr height=100 valign=bottom>
						<td>
							<!--欲知详情,可查阅您的操作日志。//-->
						</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr height=40 valign=bottom>
			<td>
				<p align=center>
					<input id="btnClose" type="button" value="关闭" name="btnClose" style="cursor:hand; WIDTH: 50px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Close()">
				</p>
			</td>
		</tr>
	</table>
	<input TYPE="hidden" NAME="ModifyCount" value="<%=ModifyCount%>">

</BODY>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?