⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 view.asp

📁 学生档案与成绩管理(1)学生档案管理:记录每个学生的档案信息
💻 ASP
字号:
<!-- #include file = "../../include/asphead.asp" -->
<!-- #include file = "../../include/function.asp" -->
<%CheckUser()%>
<link href="../../include/main.css" rel="stylesheet" type="text/css">
<script src="../../include/function.js" type="text/javascript"></script>
<script ID="clientEventHandlersJS" LANGUAGE="javascript">
<!--

function Cancel()
{
	parent.window.returnValue =false;
	parent.window.close();
}

//-->
</script>
<%

	dim WExcel
	set WExcel=server.CreateObject("WExcel.System")
	
	dim i
	dim RowID,ListCount,ListData
	RowID=Request.QueryString("RowID")
	WExcel.GetLogDetailPage cint(UserID),clng(RowID),ListCount,ListData
	CheckErr
%>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
	</head>
	<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
		<table width="100%" border=0 CELLSPACING=0 CELLPADDING="0">
			<tr height=35>
				<td colspan=5><b>详细日志</b></td>
			</tr>
			<tr height=240 valign="top">
				<td colspan=5>
					<table width="95%" cellspacing=1 bgcolor=999999>
						<tr>
							<td bgcolor='white' width='20%' align='center'>日志号</td>
							<td bgcolor='white' width='20%' align='center'>对象编号</td>
							<td bgcolor='white' width='60%' align='center'>说明</td>
						</tr>
						<%
							for i=1 to ListCount
								Response.Write ListData(i-1)
							next
						%>
					</table>
				</td>
			</tr>
			<tr height=40 valign=bottom>
				<td colspan=5><input id="btnCancel" type="button" value="关闭" name="btnCancel" style="cursor:hand; WIDTH: 50px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Cancel()"></td>
			</tr>
		</table>
	</body>                                                                                                           
</html>

⌨️ 快捷键说明

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