📄 passinc.asp
字号:
<%
if Session("wem") = "" then
Response.Redirect "default.asp"
end if
if Session("SecEx") = "1" then
Response.CacheControl = "no-cache"
end if
pageline = Session("pl")
function isadmin()
isadmin = false
if Session("wem") = Application("em_SystemAdmin") then
isadmin = true
end if
end function
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 + -