chat.asp
来自「简单的」· ASP 代码 · 共 29 行
ASP
29 行
<%
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 + =
减小字号Ctrl + -
显示快捷键?