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

📄 admin_pwdmain2.asp

📁 asp+sql的教室申请系统,可以完成一个学期的教室分配情况
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers=""
MM_authFailedURL="Admin_login.asp"
MM_grantAccess=false
If Session("MM_Username") <> "" Then
  If (true 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
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style>
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="770" height="168"  border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td background="images/003_02.gif"><form name="myform" method="post" action="Admin_pwdmain3.asp" onSubmit="return CheckForm();">
      <br>
      <table width="300" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#CCCCCC">
        <tr>
          <td><table width="300" height="146"  border="0" align="center" cellpadding="0" cellspacing="1">
            <tr bgcolor="#efefef">
              <td height="23" colspan="2"><div align="center"><strong>修 改 个 人 密 码</strong></div></td>
            </tr>
            <tr bgcolor="#FFFFFF" class="tdbg">
              <td width="98"><div align="right">旧密码:</div></td>
              <td width="202">&nbsp;
                <input name="oldpwd" type="text" class="inputs" id="oldpwd3" size="18"></td>
            </tr>
            <tr bgcolor="#FFFFFF" class="tdbg">
              <td><div align="right">新密码:</div></td>
              <td>&nbsp;
                <input name="newpwd1" type="text" class="inputs" id="newpwd12" size="18"></td>
            </tr>
            <tr bgcolor="#FFFFFF" class="tdbg">
              <td><div align="right">新密码确认:</div></td>
              <td>&nbsp;
                <input name="newpwd2" type="text" class="inputs" id="newpwd22" size="18"></td>
            </tr>
            <tr bgcolor="#FFFFFF" class="tdbg">
              <td colspan="2"><div align="center">
                  <input name="username" type="hidden" id="username" value="<%=Session("MM_Username")%>">
                  <input name="Submit" type="submit" class="button" value="确认">
&nbsp;
        <input name="Submit2" type="reset" class="button" value="重置">
              </div></td>
            </tr>
          </table></td>
        </tr>
      </table>
    </form></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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