📄 inc_protect.asp
字号:
<%
if Session(DBA_cfgSessionPwdName) <> DBA_cfgAdminPassword and _
InStr(1, Request.ServerVariables("SCRIPT_NAME"), "default.asp", vbTextCompare) <= 0 and _
DBA_IsSecurityEnabled() _
then Response.Redirect "default.asp"
Function DBA_IsSecurityEnabled
On Error Resume Next
If not DBA_cfgNoSecurity = True Then DBA_IsSecurityEnabled = True Else DBA_IsSecurityEnabled = False
On Error Goto 0
End Function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -