📄 f1.asp
字号:
<%Response.Buffer = True%>
<!--#Include File="Config.asp"-->
<!--#Include File="Function.asp"-->
<html>
<head>
<meta http-equiv=refresh content='<%=ReLoad%> url=f1.asp'>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="TEXT/CSS">
body { color: #000000; font-family: 宋体; font-size: 14px }
</style>
</head>
<body bgcolor="#EEEEEE" bottomMargin="50">
<%
'如果Session失效了,就冲定向回首页
If Session("username")="" Then
Response.Write "<script language='javascript'>top.location='index.asp';</script>"
End If
'下面获取到聊天信息
Dim strSays
strSays=Application(session("chatroom"))
'下面调用函数,将不属于自己的私聊内容删除
strSays=GetPrivate(strSays,Session("username"))
'下面在页面上写出内容
Response.Write strSays
%>
<script language="javascript">
window.scroll(0,60000);
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -