📄 jl.asp
字号:
<%
if session("user")="" then
Response.Redirect "login.asp"
response.end
else
Set admin = Server.CreateObject("ADODB.Recordset")
asql="SELECT * FROM admin where admin='"&session("user")&"'"
admin.OPEN asql, Conn,1,1
if admin.eof and admin.bof then
Response.Redirect "index.asp"
response.end
else
if session("pas")<>admin("pws") then
Response.Redirect "index.asp"
response.end
else
if session("qx")<"2" then
Response.Redirect "login.asp"
response.end
end if
end if
end if
admin.close
set admin=nothing
end if%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -