📄 readicq.asp
字号:
<%Response.Expires=0
username=Session("a_c_user_name")
if Session("a_c_user_name")="" then
Response.write "<b>[操作失败]</b><p>您尚未登录(或已经超时退出),不能进行此操作!"
Response.end
end if
if Session("a_c_user_level")<10 then
Response.Write "<b>[操作失败]</b><p>您没有查看ICQ数据的权限!"
Response.End
end if
show=Application("a_c_icq_data")
icqline=Application("a_c_icq_line")%><html>
<head>
<title>所有呼叫信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
body {font-size: 9pt; line-height: 150%}
td {font-size: 9pt; line-height: 150%}
a:link {color: #0000FF; text-decoration: none;}
a:hover {color: #FF0000; text-decoration: underline;}
a:visited {color: #0000FF; text-decoration: none;}
a:active {text-decoration: none;}
-->
</style>
</head>
<body bgcolor="#EFC684">
<div align=center><font style="font-size:12pt"><%=Application("a_c_chatroom_name")%> Web ICQ 1.0</font><br>
共有 <font color="#CC0000"><b><%=icqline/4%></b></font> 条消息</div>
<table border="0" align="center" cellpadding="2">
<tr bgcolor="#E0E0E0">
<td width="66">接收者</td>
<td width="66">发送者</td>
<td width="120">时间</td>
<td>消息</td>
</tr>
<%for i=1 to icqline step 4%>
<tr bgcolor="#E0E0E0">
<td width="66"><a href="#" onClick="javascript:window.open('send.asp?who=<%=Server.URLEncode(show(i))%>','dxjhqticqsend','Status=no,scrollbars=no,resizable=no,width=240,height=210')"><%=show(i)%></a></td>
<td width="66"><a href="#" onclick="javascript:window.open('send.asp?who=<%=Server.URLEncode(show(i))%>','dxjhqticqsend','Status=no,scrollbars=no,resizable=no,width=240,height=210')"><%=show(i+1)%></a></td>
<td width="120"><%=show(i+2)%></td>
<td><%=show(i+3)%></td>
</tr>
<%next%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -