📄 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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>『秦直道』维客百科管理系统登陆</title>
<link href=Css.css rel=stylesheet type=text/css>
<script language="JavaScript">
CheckBrowerVersion();
function CheckBrowerVersion()
{
var MajorVer=navigator.appVersion.match(/MSIE (.)/)[1];
var MinorVer=navigator.appVersion.match(/MSIE .\.(.)/)[1];
var IE6OrMore=MajorVer>= 5.5||(MajorVer>=5.5&&MinorVer>=5.5);
if (!IE6OrMore)
{
alert('IE浏览器版本太低,请升级IE浏览器到5.5以上版本!');
document.all.BtnSubmit.disabled=true;
}
}
</script>
<%
Function GetCode()
Dim TestObj
On Error Resume Next
Set TestObj = Server.CreateObject("Adodb.Stream")
Set TestObj = Nothing
If Err Then
Dim TempNum
Randomize timer
TempNum = cint(8999*Rnd+1000)
Session("GetCode") = TempNum
GetCode = Session("GetCode")
Else
GetCode = "<img src=""../nUser/GetCode.asp"">"
End If
End Function
%>
</head>
<body oncontextmenu="javascript:return false;">
<div align="center"></div>
<table width="491" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> <p> </td>
</tr>
<tr>
<td>
<p align="center"><h2 align="center">『秦直道』多用户博客管理系统</h2></td>
</tr>
<tr>
<td height="217" valign="top" style="background-position:center; background-repeat:no-repeat; ">
<table width="350" border="0" align="center" cellpadding="4" cellspacing="0">
<form name="form1" method="post" action="Login_Save.asp">
<tr>
<td width="104"><div align="right" >邮 箱:</div></td>
<td width="230"><input name="Name" type="text" id="Name2" value="" size="16"> </td>
</tr>
<tr>
<td><div align="right" >密 码:</div></td>
<td><input name="PassWord" type="password" id="PassWord" size="16">
</td>
</tr>
<tr>
<td><div align="right" >随机码:</div></td>
<td><input name="VerifyCode" type="text" class="input" id="VerifyCode3" size="9">
<% = GetCode() %></td>
</tr>
<tr>
<td height="80" colspan="2">
<div align="center">
<input type="submit" name="bubu" value="提 交" >
<input type="button" name="sss" value="取 消" onClick=vbscript:location="../index.htm">
</div></td>
</tr>
</form>
</table></td>
</tr>
<tr>
<td > </td>
</tr>
<tr>
<td ><div align="center">官方站点:<a href="http://www.qinzd.com" target="_blank">http://www.qinzd.com</a></div></td>
</tr>
</table>
<p align="center"> </p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -