📄 admin_head.asp
字号:
<%
If Not session("admin") Then
response.write "<script language=javascript>alert( ""请先登录!"");"&Chr(13)&"location.href=""admin_login.asp"";</script>"
response.end
End If
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" CONTENT="0">
<!--#include file="style.css"-->
<script language=javascript src=inc/js.inc></script>
<title><%=PageTitle%> - 留言本系统</title>
</head>
<body <%=skin(13)%>>
<table align=center border=1 bordercolor=<%=skin(12)%> cellpadding=3 cellspacing=0 width="<%=skin(11)%>">
<tr class=titlestyle>
<Td style="border:0;font-family:宋体;font-size:9pt" class=titlelink>>>> <a href=admin_user.asp>用户管理</a> | <a href=admin_skin.asp>皮肤设定</a> | <a href=admin_const.asp>基本设置</a> | <a href="admin_login.asp?action=logout">退出登陆</a></td>
<Td style="border:0" align=right><a href="<%=cfg(3)%>" target=_blank><img src="images/homepage.gif" width=65 height=14 title="<%=cfg(2)%>"></A></td>
</tr>
</table>
<Table align=center border=0 cellpadding=2 cellspacing=0 width="<%=skin(11)%>" height=80>
<tr>
<td><%=cfg(4)%></td>
<td align=right>
<%Dim arr(3)
Set rs=conn.execute("select count(*) from [user] where addtime like '%"&date()&"%'")
arr(0)=rs(0)
rs.close
Set rs=conn.execute("select count(*) from [user]")
arr(1)=rs(0)
rs.close
Set rs=conn.execute("select count(*) from [guest] where visittime like '%"&date()&"%'")
arr(2)=rs(0)
rs.close
Set rs=conn.execute("select count(*) from [guest]")
arr(3)=rs(0)
rs.close%>
今日注册:<Font color="<%=skin(8)%>" style="font-family:Tahoma"><%=arr(0)%></font><BR>
总注册数:<Font color="<%=skin(8)%>" style="font-family:Tahoma"><%=arr(1)%></font><BR>
今日留言:<Font color="<%=skin(8)%>" style="font-family:Tahoma"><%=arr(2)%></font><BR>
总计留言:<Font color="<%=skin(8)%>" style="font-family:Tahoma"><%=arr(3)%></font>
</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -