📄 admin_login.asp
字号:
<%@language=vbscript codepage=936 %>
<%
option explicit
'强制浏览器重新访问服务器下载页面,而不是从缓存读取页面
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
'主要是使随机出现的图片数字随机
%>
<html>
<head>
<title>管理员登录</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="inc_style.css" rel="stylesheet" type="text/css">
<script language=javascript>
<!--
function SetFocus()
{
if (document.Login.UserName.value=="")
document.Login.UserName.focus();
else
document.Login.UserName.select();
}
function CheckForm()
{
if(document.Login.UserName.value=="")
{
alert("请输入用户名!");
document.Login.UserName.focus();
return false;
}
if(document.Login.Password.value == "")
{
alert("请输入密码!");
document.Login.Password.focus();
return false;
}
}
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #FFFFFF;
}
.STYLE1 {font-size: 12px}
.STYLE2 {font-size: 12px; color: #FF0000; }
.STYLE3 {font-size: 12px; color: #FFFF00; }
-->
</style></head>
<body class="bgcolor">
<p> </p>
<form name="Login" action="Admin_ChkLogin.asp" method="post" target="_parent" onSubmit="return CheckForm();">
<div align="center">
<p><img src="img/1B995BFDAEBB9057DC12F892AC1C7644.GIF" width="48" height="48"></p>
<p class="STYLE1">恭喜您``您已经成功的进入我们的管理地址:您的进入表示:您已经踏开了您的第一步,开始了您的犯罪生涯、这里将留下您永远涂抹不掉的犯罪足迹!</p>
<p class="STYLE2">如果您勿入:请自行离开!</p>
<table width="452" border="0" cellspacing="1" bordercolor="#CCCCCC" height="341" background="img/login.gif">
<tr align="center">
<td height="95" colspan="2"> </td>
</tr>
<tr align="center">
<td height="42" colspan="2"> </td>
</tr>
<tr>
<td height="33" align="right" width="158">用户名:</td>
<td width="287" height="33"><input name="UserName" type="text" id="UserName4" maxlength="20" style="width:160px;border-style:solid;border-width:1;padding-left:4;padding-right:4;padding-top:1;padding-bottom:1" onMouseOver="this.style.background='#E1F4EE';" onMouseOut="this.style.background='#FFFFFF'" onFocus="this.select(); "></td>
</tr>
<tr>
<td height="28" align="right" width="158">密 码:</td>
<td height="28" width="287"><input name="Password" type="password" maxlength="20" style="width:160px;border-style:solid;border-width:1;padding-left:4;padding-right:4;padding-top:1;padding-bottom:1" onMouseOver="this.style.background='#E1F4EE';" onMouseOut="this.style.background='#FFFFFF'" onFocus="this.select(); "></td>
</tr>
<tr>
<td colspan="2" height="45"> <div align="center">
<input type="submit" name="Submit" value=" 登 陆 " style="font-size: 9pt; height: 19; width: 60; color: #000000; background-color: #E1F4EE; border: 1 solid #E1F4EE" onMouseOver ="this.style.backgroundColor='#ffffff'" onMouseOut ="this.style.backgroundColor='#E1F4EE'">
<input name="reset" type="reset" id="reset" value=" 清 除 " style="font-size: 9pt; height: 19; width: 60; color: #000000; background-color: #E1F4EE; border: 1 solid #E1F4EE" onMouseOver ="this.style.backgroundColor='#ffffff'" onMouseOut ="this.style.backgroundColor='#E1F4EE'">
<br>
</div></td>
</tr>
<tr>
<td colspan="2">
<div align="center" class="STYLE3">请不要尝试进入,负责后果自负!</div></td>
</tr>
</table>
</div>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -