📄 loginv.asp
字号:
<%
Function VerificationRole(RoleType)
RoleTypeT=RoleType
RoleId=session("saLoginRole")
'RoleId=6
if not isNull(RoleId) and RoleId<>"" then
AdminRoleSql="select "&RoleTypeT&" from admin where ID="&RoleId
'rsT.close
set rsT=conn.execute(AdminRoleSql)
if rsT.eof then
VerificationRole=False
else
VerificationRole=rsT(""&RoleType&"")
end if
else
VerificationRole=False
end if
End Function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -