📄 f1.asp
字号:
<!--#Include File="Config.asp"-->
<!--#Include File="Function.asp"-->
<html>
<head>
<meta http-equiv="refresh" content="<%=ReLoad%>">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="all.css">
</head>
<body bgcolor="#EEEEEE" bottomMargin="50">
<%
'下面从Application中获取聊天信息
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 + -