一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

asp简单聊天室程序 二

时间:2008-09-30 编辑:简简单单 来源:一聚教程网

asp简单聊天室程序 二

<%@Language="JavaScript" CodePage="936"%><%
var Nothing;
Response.addHeader("Cache-Control","no-cahce");
if(!Session.Contents("Chat_User"))
{
    Session.Contents("Chat_User") = "Guest";
    Session.Contents("Chat_Time") = (new Date).getTime();
}
if(Application.Contents("Chat_Data") == Nothing)
{
    Application.Lock();
    Application.Contents("Chat_Data") = "f系统bredb您bblueb欢迎您来到聊天室。bblackb" + (3000 + (new Date).getTime());
    Application.UnLock();
}
var PostChat = Request.QueryString.Item;
if(PostChat)
{
    var Chat_Data = Application.Contents("Chat_Data").split("f");
    if(Chat_Data.length > 30) Chat_Data.shift();
    Chat_Data.push(Server.HtmlEncode(unescape(PostChat)) + "b" + (new Date).getTime());
    Application.Lock();
    Application.Contents("Chat_Data") = Chat_Data.join("f");
    Application.UnLock();
}
var LastTime = Session.Contents("Chat_Time");
var MyData = new Array;
var AllData = Application.Contents("Chat_Data").split("f");
for(var C=AllData.length-1; C>=1; C--)
{
    var Node = new Array;
    var Item = AllData[C].split("b");
    if(Item[6] <= Session.Contents("Chat_Time")) break;
    if(Item[6] > LastTime) LastTime = Item[6];
    Node.push("<发送人 颜色="" + Item[1] + "">" + Item[0] + "");
    Node.push("<接收人 颜色="" + Item[3] + "">" + Item[2] + "");
    Node.push("<说话 颜色="" + Item[5] + "">" + Item[4] + "");
    Node = Node.join("ttrn");
    Node = "t<聊天 时间="" + Item[6] + "">" + Node + "rnt";
    MyData.push(Node);
}
Session.Contents("Chat_Time") = LastTime;
MyData.reverse();
%>
<聊天室>
<%=MyData.join("rn")%>

热门栏目