📄 checkuser.asp
字号:
<%
set rst=server.createobject("adodb.recordset")
query="select userid,status,baseid from newwork where id="&CLng(request("nwid"))
rst.open query,conn,1,1
if rst.eof then
response.redirect "error.htm"
response.end
end if
if rst("userid")=session("uid") and rst("status")=0 and rst("baseid")=Clng(request("flowid")) then
rst.close
set rst=nothing
else
rst.close
set rst=nothing
response.redirect "error.htm"
response.end
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -