📄 err.asp
字号:
<%
errstr = trim(request("errstr"))
gourl = trim(request("gourl"))
if gourl <> "" and InStr(1, gourl, "GRSN=") = 0 then
if InStr(1, gourl, "?") = 0 Then
gourl = gourl & "?" & getGRSN()
else
gourl = gourl & "&" & getGRSN()
end if
end if
%>
<HTML>
<HEAD>
<title>Corp.Email</title>
<LINK href="images\hwem.css" rel=stylesheet>
</HEAD>
<BODY>
<br><br>
<table width="100%"><tr><td width="30"></td><td>
<table border=0 cellspacing=0 cellpadding=0 width="90%">
<tr bgcolor="#93BEE2">
<%
if errstr = "" then
%>
<td height="30" style='border-top:1px #8CA5B5 solid; border-right:1px #8CA5B5 solid;' colspan="2"><font class="Wf" color="#104A7B"> <b>Operation Failed</b>.</font></td>
<%
else
%>
<td height="30" style='border-top:1px #8CA5B5 solid; border-right:1px #8CA5B5 solid;' colspan="2"><font class="Wf" color="#104A7B"> <b><%=errstr %></b>.</font></td>
<%
end if
%>
</tr>
<br>
<tr><td><br><hr size="1" color="#8CA5B5"></td></tr>
<tr><td align="right" colspan="2"><br>
<%
if gourl = "" then
%>
<input type="button" value="Return" onclick="javascript:history.back();" class="Bsbttn">
<%
else
if Left(gourl, 11) <> "welcome.asp" then
%>
<input type="button" value="Return" onclick="javascript:location.href='<%=gourl%>';" class="Bsbttn">
<%
else
%>
<input type="button" value="Return" onclick="javascript:parent.location.href='<%=gourl%>';" class="Bsbttn">
<%
end if
end if
%>
</td></tr></table>
</td></tr></table>
</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 + -