📄 content.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="refresh" content="5; URL=content.asp">
<title>聊天信息</title>
<style type="text/css">
<!--
body {
margin-top: 0px;
}
.style2 {
font-family: "华文新魏";
font-size: 17px;
color: #0033FF;
}
.style5 {
font-size: 18px;
font-family: "华文新魏";
color: #0000CC;
}
-->
</style>
</head>
<body bgcolor="#FFFFCC">
<table width="100%" height="100%" border="0">
<tr>
<td height="25" valign="top" class="style5">远云艳超聊天室欢迎您!请遵守聊天室规则,请讲文明用语!</td>
</tr>
<tr>
<td height="482" valign="top">
<table width="100%" border="0">
<%messageall=split(Application("message"),"|")
num=Ubound(messageall)
if num>15 then
start=num-14
else
start=0
end if
for i=start to num%>
<tr>
<td><%=messageall(i)%></td>
</tr>
<%next%>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -