adm_main.asp

来自「教学在线系统」· ASP 代码 · 共 55 行

ASP
55
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
'if(session("stuid") = "" or session("pwd") = "")then
'response.redirect("Login.asp")
'End if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>管理考试系统</title>
</head>
<script>
function goto()
{
if(document.all("leftmenu").style.display == "")
	{
	document.all("leftmenu").style.display = "none";
	gotobar.innerHTML = "<img src='../images/gotoright.gif' alt='缩小' style='cursor:hand'>";
	}
else
	{
	document.all("leftmenu").style.display = "";
	gotobar.innerHTML = "<img src='../images/gotoleft.gif' alt='放大' style='cursor:hand'>";
	}
}
</script>
<style>
td{border:1px solid;}
</style>
<body topmargin=0 leftmargin=0>
<table cellspacing=0 cellpadding=0 width=760 height=100% align=center style="border:1px solid">
<tr>
<td height="115" align=center>banner</td>
</tr>
<tr>
<td>
<table width=100% height="500" border=0 align=center cellpadding=0 cellspacing=0 >
	<tr>
		<td width="27%" id="leftmenu">
			<iframe src="adm_Mainleft.asp" frameborder="0" width="100%" height="100%" name="mainl" align="middle" scrolling="no"></iframe>
		</td>
		<td width="1%" >
			<a style="cursor:hand;" id="gotobar" onclick="goto()"><img src="../images/gotoleft.gif" alt="放大"  width=10></a>
		</td>
		<td width="72%">
			<iframe src="adm_Mainright.asp" frameborder="0" width="100%" height="100%" name="mainr" scrolling="auto"></iframe>
		</td>
	</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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