make.asp

来自「本学期要实讯」· ASP 代码 · 共 53 行

ASP
53
字号
<% option explicit%>
<%Response.Buffer=True%>
<!--#Include file="connection.asp"-->
<%dim id
session("id")=request("id")%>
<html>
<head>
	<title>管理员登录</title>
    <style type="text/css">
<!--
.style1 {
	font-size: 12px;
	color: #009900;
}
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.style2 {
	font-size: 12px;
	color: #0099FF;
}
-->
    </style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
<body>
    
<form method="post" action="" name="form1">
  <table width="760" height="105" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#0099FF" style="border-collapse:collapse ">
      <tr>
        <td><img src="images/top.jpg" width="698" height="57"></td>
      </tr>
	  <tr>
        <td height="44"><p><span class="style1">请输入管理员密码:</span>		
            <input name="password" type="password" class="style1">
	<input type="submit" class="style1" value=" 确 定 "></td>
      </tr>
</table>
  <br>
  <span class="style2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 桂电应科计网034101-丘汉金</span>
</form>
	<%
	If Request("password")="5201314" Then    
	response.Redirect"rem.asp"        
	ElseIf Request("password")<>"" Then               
		Response.Write "密码错误,请重新输入"
	End If
	%>
</body>
</html>

⌨️ 快捷键说明

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