• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NET实现的简单的聊天室

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
登陆页面index.aspx
<%@ page language="c#" debug="true" %>
<%
 if(Request.Form["submit"] == "submit"){
  Session["name"] = Request.Form["name"];
  Response.Redirect("frame.aspx");
 }
%>
<html>
 <head>
  <title>登陆页面</title>
 </head>
 <body>
  <form action="index.aspx" method="post">
   姓名:<input type="text" name="name">
   <br>
   <input type="submit" name="submit" value="submit" value="登陆">
  </form>
 </body>
</html>
-----------------------------------
框架页frame.aspx
<html>
 <head>
  <title>框架页面</title>
 </head>
 <frameset rows="*,100">
  <frame src="display.aspx">
  <frame src="message.aspx">
 </frameset>
</html>
-----------------------------------
聊天记录显示页面display.aspx
<%@ page language="c#" debug="true" %>
<html>
 <head>
  <title>display</title>
  <meta http-equiv="refresh" content="5;url=display.aspx">
  <script language="javascript">
   function scrollWindow(){
    this.scroll(0,6500);
    setTimeout("scrollWindow()",200);
   }
   scrollWindow();
  </script>
 </head>
 <body>
  <%
   Response.Write(Application["chat_content"]);
  %>
 </body>
</html>
-----------------------------------
发言页面:message.aspx
<%@ page language="c#" debug="true" %>
<%
 string message = Request.Form["message"];
 string chat_content = Session["name"]+"说:"+message;
 Application.Lock();
 Application["chat_content"] = Application["chat_content"] + "<br>" +chat_content;
 Application.UnLock();
%>
<html>
 <head> 
  <title>message</title>
 </head>
 <body bgcolor="lightblue" onload="document.all.message.focus();">
  <form method="post" action="message.aspx" style="margin:0px;">
   <input type="text" name="message" size="50">
   <input type="submit">
  </form>
 </body>
</html>

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Asp.net控制TextBox只能输入数字发布时间:2022-07-10
下一篇:
C#ASP.NETMVC5路由系统机制详细讲解(转)发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap