⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 left.asp

📁 柠檬树聊天服务器
💻 ASP
字号:
<%Response.Expires=0
DIM Cookie
Cookie=Session.SessionID
if Cookie="" then Response.Write "没有权限" : Response.end
%>
<!--#include file="conn.asp"-->
<%
sql="select username,grade,score,times from Chatuser where SessionID='"&Cookie&"'"
set rs=conn.execute(sql)

if rs.eof then
Session("usernickname")="您是未注册用户"
Session("class")=0
Session("score")=0
Session("times")=0
else
Session("usernickname")=rs("username")
Session("class")=rs("grade")
Session("score")=rs("score")
Session("times")=rs("times")
rs.Close
end if
dim class1
class1=Session("class")
%>
<html>
<head>
<title></title>
<style type="text/css">
<!--
body {font-size : 9pt;}
td {font-size : 10.5pt;}
A  {color:#000000;text-decoration : none;}
A:Hover{color:#FFFFFF;text-decoration:none;background-color:#006aff}
A:Active{color:#FFFFFF;text-decoration:none;background-color:#000000}
a:visited{text-decoration:none}
a:link{text-decoration:none}
-->
</style>
</head>
<body oncontextmenu=self.event.returnValue=false topmargin="2" leftmargin="2" bgcolor="#FFFFFF">
<table border="0" width="100%" height="100%" bordercolorlight="#808080" bordercolordark="#AED7E3" background="../Images/bbl.gif">
  <tr valign="middle"> 
    <td align="center">
<a href="readme.asp" target="right">聊友必读</a><br><br>
<a href="http://192.168.0.119:8000/onlinelist" target="right">在线管理</a><br><br>
<a href="public.asp" target="right">聊务公开</a><br><br>
<a href="vote.asp" target="right">投票系统</a><br><br>
<a href="sort.asp" target="right">聊友排行</a><br><br>
<a href="board.asp" target="right">网友留言</a><br><br>
<%if class1>6 then%>
<a href="grade.asp" target="right">级别操作</a><br><br>
<%end if%>
<%if class1>8 then%>
<a href="ipgl.asp" target="right">I P 管理</a><br><br>
<%end if%>
<%if class1>9 then%>
<a href="room.asp" target="right">房间管理</a><br><br>
<a href="zhgl.asp" target="right">帐号管理</a><br><br>
<a href="scfg.asp" target="right">系统设置</a><br><br>
<a href="update.htm" target="right">更新设置</a><br><br>
<%end if%>
    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -