📄 forgetbf.asp
字号:
<%
dim webkill
set webkill = server.createobject("easymail.WebKill")
webkill.Load
rip = Request.ServerVariables("REMOTE_ADDR")
if webkill.IsKill(rip) = true then
set webkill = nothing
response.redirect "err.asp?gourl=default.asp&errstr=" & Server.URLEncode("Access from IP address " & rip & " denied") & "&" & getGRSN()
end if
set webkill = nothing
errstr = trim(request("errstr"))
%>
<HTML>
<HEAD>
<title>Corp.Email</title>
<LINK href="images\hwem.css" rel=stylesheet>
</HEAD>
<SCRIPT LANGUAGE=javascript>
<!--
function window_onload() {
fm1.username.focus();
<%
if errstr <> "" then
%>
alert("<%=errstr %>");
<%
end if
%>
}
//-->
</SCRIPT>
<body LANGUAGE=javascript onload="return window_onload()">
<br><br><br><br>
<form method="post" action="forget.asp" name="fm1">
<table width="450" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" height="150">
<tr bgcolor="#dbeaf5">
<td height="28" align="center" nowrap height="28" style="border-left:1px #8CA5B5 solid; border-top:1px #8CA5B5 solid; border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;"><font class="s" color="#104A7B"><b>Forgot Password</b></font></td>
</tr>
<tr align="center">
<td height="70">
<div align="center">
<table width="90%" border="0">
<tr>
<td align="center"><font class="s" color="#104A7B"><b>ID:</b></font> <input type="text" name="username" maxlength="64" class="textbox">
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td height="40" bgcolor="#ffffff" align="right"><br><br>
<input type="submit" value="Submit" class="Bsbttn">
<input type="button" value="Cancel" onClick="javascript:location.href='default.asp?<%=getGRSN() %>'" class="Bsbttn">
</td>
</tr>
</table>
</Form>
<br>
</BODY>
</HTML>
<%
function getGRSN()
dim theGRSN
Randomize
theGRSN = Int((9999999 * Rnd) + 1)
getGRSN = "GRSN=" & CStr(theGRSN)
end function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -