主頁面index.asp:
}返回聊天內容chat_log.asp:
<%
response.expires = -1
response.expiresabsolute = now() - 1
response.cachecontrol = "no-cache"
if isnumeric(request("id")) then
set rs=conn.execute("select top 50 * from chat_log where
chat_id>"&request("id")&" order by chat_id desc")
while not rs.eof
response.write(escape(rs("chat_id")&"*"&rs("roomid")&"*"&rs("sendtime")&rs("m
rs("srcphone")&rs("userid")&"*"&rs("nickname")&"*"&rs("roomid")&"#" ))
rs.movenext
wend
%>
負責傳送聊天內容chat_send.asp:
<%
'exec chat '13500000000','me','278810','571','1'
phone=session("phone")
province=session("province")
content=request("content")
srcphone=request("srcphone")
conn.execute("exec chat
ajax無重新整理聊天室系統
php愛好者聊天室公告 歡迎來到聊天室 資料庫sql語句 create table message id int unsigned not null auto increment,msg varchar 32 not null,sender varchar 6 not null,receiver v...
frameset 實現無重新整理聊天室技術實現方法
一 統一名詞 文字框 顯示聊天內容的框架頁面 輸入框 輸入聊天資訊的框架頁面 重新整理框 自重新整理獲取最新聊天資訊的框架頁面,該頁面不直接顯示出來 二 如何實現 實現無重新整理,就是要在當前文字框聊天內容後面不斷的新增新的聊天資訊。實現的方式是 新增新資訊 而不是 重新重新整理 三 技術要點 實現...