首页 > 编程 > ASP > 正文

chat.asp聊天程序的编写方法

2024-05-04 10:59:20
字体:
来源:转载
供稿:网友

可能朋友们已经在一些杂志上看到过 ASP 聊天程序的编写方法,但作者在这里自己写了一个更简单的程序,仅仅使用了一个 .asp 文件。请将以下代码剪贴到记事簿并保存为chat.asp。

< %@ Language=VBScript %>< %Response.Buffer=true ' 设置输出缓存,用于显示不同页面。On error resume next ' 忽略程序出错部分If Request.ServerVariables("Request_Method")="GET" then' 判断客户是以什么方式请求 WEB 页面'------------------------' 客户登陆界面 '------------------------%>< form method="POST" action="chat.asp">< p>< input type="text" name="nick" size="20" value="nick" style="background-color: rgb(192,192,192)">< br>< input type="submit" value=" 进入聊天室 " name="B1" style="color: rgb(255,255,0); font-size: 9pt; background-color: rgb(0,128,128)">< p>< input type="hidden" name="log" size="20" value="1">< br>< /p>< /form>< %Response.End ' 结束程序的处理ElseResponse.clear ' 清空缓存中的内容dim talkIf Request.Form("nick")<>"" then' 判断客户是是否在聊天界面中 Session("nick")=Request.Form("nick")End If'------------------------'客户聊天界面 '------------------------%>< form method="POST" action="chat.asp" name=form1> < p>< %=Session("nick")%> 说话:< input type="text" name="talk" size="50">< br>< input type="submit" value=" 提交 " name="B1">< input type="reset" value=" 取消 " name="B2">< /p>< /form>< A HREF="/asptest/shusheng/chat.asp"> 离开 < /a>< br>< br>< %If Request.Form("log")<>1 thenIf trim(Request.Form("talk"))="" then' 判断用户是否没有输入任何内容 talk=Session("nick")&" 沉默是金。"Elsetalk=trim(Request.Form("talk"))' 去掉字符后的空格 End IfApplication.lockApplication("show")="< table border='0' cellpadding='0' cellspacing='0' width='85%' >< tr>< td width='100%' bgcolor='#C0C0C0'>〈/td〉〈/tr〉< tr>< td width='100%'>< font color='#0000FF'> 来自 "&Request.ServerVariables("remote_addr")&" 的 "&Session("nick")&time&" 说:< /font>"&talk&"〈/td〉〈/tr〉< tr>< td width='100%' bgcolor='#C0C0C0'>〈/td〉〈/tr〉< /table>< br>"&Application("show")Application.UnLockResponse.Write Application("show")End IfEnd If%>

  

下面我们来对这个聊天室程序进行逐步的分析。
   首先,由于聊天室的所有客户都要能够共享信息,所以不可避免的要用到具有应用程序级变量的对象 Application,这是建立 Chat 程序的关键所在,所有的谈话数据都存放在一个应用程序级变量中,以便让所有的客户读取。我们可以用所学过的 request 对象获取客户所输入的谈话,并保存在变量 talk 中 , 然后将 talk 的值存入应用程序级变量 show 中,如下 :

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表