📄 chat.asp
字号:
<%
Option Explicit
Dim ChatID
ChatID = Request("ChatID")
If (ChatID = "") Then
Response.Redirect "Expired.asp"
Response.End
End If
%>
<html>
<head>
<title>bm8</title>
<link rel="stylesheet" type="text/css" href="Chat.css">
</head>
<frameset cols="*,120" frameborder="1">
<frameset rows="70,*,40" frameborder="0">
<frame name="Banner" src="http://www.bm8.com.cn" scrolling="no" target="_self">
<frame name="History" src="History.asp?ChatID=<%=ChatID%>">
<frame name="Message" src="Message.asp?ChatID=<%=ChatID%>" scrolling="no" target="_self">
</frameset>
<frame name="Chatters" src="Chatters.asp?ChatID=<%=ChatID%>" noresize scrolling="no">
<noframes>
<body>
Your browser does NOT support FRAMES
</body>
</noframes>
</frameset>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -