一个免费的简单聊天室源代码

chat.html  
<html>
<head><title>Chat</title></head>
<frameset rows="*,100">
<frame src="chatopinions.asp">
<frame src="chatform.asp">
</frameset>
</html>  

chatopinions.asp  
<html>
<head>
<META HTTP-EQUIV=refresh content="5;URL=chatopinions.asp"></head>
<body bgcolor=FFFFFF>
<center>
<table border=0 width=350>
<tr><td width=50>
<% =Application("A9") %></td><td width=300><% =Application("B9") %>
</td></tr><tr><td>
<% =Application("A8") %></td><td><% =Application("B8") %>
</td></tr><tr><td>
<% =Application("A7") %></td><td><% =Application("B7") %>
</td></tr><tr><td>
<% =Application("A6") %></td><td><% =Application("B6") %>
</td></tr><tr><td>
<% =Application("A5") %></td><td><% =Application("B5") %>
</td></tr><tr><td width=50>
<% =Application("A4") %></td><td><% =Application("B4") %>
</td></tr><tr><td>
<% =Application("A3") %></td><td><% =Application("B3") %>
</td></tr><tr><td>
<% =Application("A2") %></td><td><% =Application("B2") %>
</td></tr><tr><td>
<% =Application("A1") %></td><td><% =Application("B1") %>
</td></tr></table>
<table border=0 width=350>
<tr><td align=right>
Get your chat at <A REF="http://www.submitside.com">Submitside</A>: free script.
</td></tr></table>
</center>
</body>
</html>  

chatform.asp  
<%  
If Request.Form ("Opinion")="" then  
ShowForm()  
else  
  if Session("AA")="" then
  NewUser()
  GoAhead()
  else
  GoAhead()
  end if  
end if %>
<% Sub ShowForm() %>

<html><body  bgcolor=FFFFFF>
<center>
<form method=post action=chatform.asp>
<table border=0><tr><td>
<%  if Session("AA")="" then %>
Chose a name or  nickname  
<input type=text name=Name size=20><BR>
Type your opinion  
<% else %>
<% =Session("AA") %>
<% end if %>
<input type=text size=60 name=Opinion value="<% =request.form("Opinion") %>"><BR>
<input type=submit value="Submit">
</td><tr></table>
</form>
</center>
</body>
</html>

<% End Sub %>

<% Sub GoAhead() %>

<%
BB=Request.form("Opinion")
BB=server.htmlencode(BB)

Application.Lock
Application("B1")=Application("B2")
Application("B2")=Application("B3")
Application("B3")=Application("B4")
Application("B4")=Application("B5")
Application("B5")=Application("B6")
Application("B6")=Application("B7")
Application("B7")=Application("B8")
Application("B8")=Application("B9")
Application("B9")=BB

Application("A1")=Application("A2")
Application("A2")=Application("A3")
Application("A3")=Application("A4")
Application("A4")=Application("A5")
Application("A5")=Application("A6")
Application("A6")=Application("A7")
Application("A7")=Application("A8")
Application("A8")=Application("A9")
Application("A9")=Session("AA")
Application.Unlock
%>

<html>
<head></head><body bgcolor=FFFFFF>
<center>
<form method=post action=chatform.asp>
<table border=0><tr><td>
<% =Session("AA") %> <input type=text size=60 name=Opinion>
<BR><input type=submit value="Submit">
</td></tr></table>
</form>
</center>
</body>
</html>

<% End Sub %>

<% Sub NewUser() %>
  <%
  AA=Request.form("Name")
  AA=server.htmlencode(AA)
  Session("AA")=AA
  %>

<% End Sub %>

时间: 2025-01-04 05:43:56

一个免费的简单聊天室源代码的相关文章

刚学习C#,求一个P2P 多人聊天室源代码学习

问题描述 本人菜鸟,刚学习C#,求一个P2P多人聊天室源代码学习,求犀利源代码学习借鉴. 解决方案 解决方案二:可以发到本人邮箱451195526@qq.com谢谢~~~各位大牛!解决方案三:去51aspx网站下载

一个简单的聊天室源代码!(一)

聊天室|源代码 --chat.asp-- <html> <head><title></title></head> <body> <form method="post" action="RECEIVE.asp">  <input type="hidden" name="content" value><div align=&quo

利用AJAX和ASP.NET实现简单聊天室

介绍 我的第一个简单的Chat room 是用ASP 3.0 写成的.那无外乎有二个TextBox,他们发送消息给程序变量然后显示在一个每秒刷新的页面上.在那个时代,一个真正的聊天室必须运用Java Applet或ActiveX control.不过这一切都在Ajax到来之后改变了.AJAX是一个结合了XML 和 javascript的异步通信机制.现在我们可以只用服务器代码和一点JavaScript .这篇文章就是介绍如何用AJAX技术来构建一个简单的聊天室. 示例程序 示例程序是一个单一的多

asp简单聊天室程序 一

很多以前的聊天室程序哦,只用到两个文件哦.下我看第一个html文件吧. <html><head><title>asp简单聊天室程序</title> <style>*{font:9pt 宋体;line-height:1.7}</style> <script> var XmlDom = document.createElement("xml"); XmlDom.onreadystatechange=func

我自己写的聊天室源代码(十

聊天室|源代码                 for i = 1 to my_point                    if i = my_point then                        session("ss_oldpoint") = my_point - 1                        if session("ss_oldpoint") < 1 then                            

我自己写的聊天室源代码(前言)

聊天室|源代码 1.本系统完全基于ASP开发,使用application,session2.要求浏览器支持cookie3.系统数据源明:chat4.本系统有以下BUG:(1)不能支持使用:"(2)大量说话时,有可能造成某次不能浏览(3)我实在太懒了^O^5.剩下的都是

我自己写的聊天室源代码(七)

聊天室|源代码 *****************************聊天处理******************************<%'chatadmin.asp%><%response.buffer = true%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title

我自己写的聊天室源代码(八)

聊天室|源代码 ************************不能进入聊天室*************************<%'nochat.asp%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>不能进入聊天室</title><meta name=&qu

我自己写的聊天室源代码(九)

聊天室|源代码 *************************表情设置**************************<%'optionbq.asp%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>表情设置</title><meta name="