📄 check.asp
字号:
<%
Dim adu,adp,chk
If Session("AdminUser")="" or Session("AdminPwd")="" Then
Response.Redirect "Index.html"
Else
adu = Replace(Session("AdminUser"),"'","")
adp = Replace(Session("AdminPwd"),"'","")
Set chk = Conn.Execute("Select admin,password From [Admin] Where admin='"&adu&"' and password='"&adp&"'")
If chk.Eof and chk.Bof Then
Response.Redirect "Index.html"
End if
End if
chk.Close
Set chk=Nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -