📄 diaoban1.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers="3,4"
MM_authFailedURL="../zx/shibai1.asp"
MM_grantAccess=false
If Session("MM_Username") <> "" Then
If (false Or CStr(Session("MM_UserAuthorization"))="") Or _
(InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
MM_grantAccess = true
End If
End If
If Not MM_grantAccess Then
MM_qsChar = "?"
If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
MM_referrer = Request.ServerVariables("URL")
if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
Response.Redirect(MM_authFailedURL)
End If
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>调班管理1</title>
<style type="text/css">
<!--
.STYLE1 {font-size: 12}
.STYLE3 {font-size: 12; color: #003300; }
.STYLE5 {font-size: 18px; color: #003300; }
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="diaoban2.asp">
<label>
<span class="STYLE5"><br />
请输入需调班的学生编号:
<input name="pianhao" type="text" class="STYLE5" id="pianhao" size="10" />
</span></label>
<span class="STYLE5">
<label>
<input type="submit" name="Submit" value="查询" />
</label>
</span><span class="STYLE3"> </span><span class="STYLE1"> </span>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -