📄 admin.asp
字号:
<!--#include file="conn.asp"--><!--#include file="../inc/md5.asp"-->
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<title>论坛管理</title>
</head><%
dim lgname,lgpwd,lgpwdmd5
lgname=replace(session(prefix&"lgname"),"'","")
lgpwd=replace(session(prefix&"lgpwd"),"'","")
if isnull(lgname) or lgname="" or isnull(lgpwd) or lgpwd="" then
response.redirect"admincheck.asp"
else
lgpwdmd5=md5(lgpwd)
if conn.execute("select top 1 bd from admin where name='"&lgname&"' and password='"&lgpwdmd5&"' and bd=0").eof then
response.redirect"admincheck.asp"
else
end if
end if
%>
<frameset framespacing="0" border="0" frameborder="0" cols="200,*">
<frame name="left" src="adminleft.asp" marginwidth="0" marginheight="0" scrolling="yes" noresize target="right">
<frame name="right" src="adminfso.asp" marginwidth="0" marginheight="0" scrolling="yes" noresize>
<noframes>
<body>
<p>此网页使用了框架,但您的浏览器不支持框架。</p>
</body>
</noframes>
</frameset>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -