C#实例之简单聊天室(状态管理)
前言
状态管理是在同一页或不同页的多个请求发生时,维护状态和页信息的过程。因为Web应用程序的通信协议使用了无状态的HTTP协议,所以当客户端请求页面时,ASP.NET服务器端都会重新生成一个网页实例。此时,旧网页的任务完成,旧网页的实例也随之消失。这种无状态,意味着客户端用户在浏览器中的一些状态或是对数据的一些修改都将丢失。
简单聊天室
这里运用System.Web命名空间的那些管理状态的类,做一个简单的聊天室
protected void Button1_Click(object sender, EventArgs e)
{
Application.Lock();
int intUserNum;
string user;
string[] users;
string strUserName;
intUserNum = Convert.ToInt32(Application["userNum"]);
if (intUserNum > 20)
{
Response.Write("在线人数超过20人,不能登录了!");
Response.Redirect("Default.aspx");
}
else {
user = Application["user"].ToString();
users = user.Split(',');
strUserName = TextBox1.Text.Trim();
for (int i = 0; i < intUserNum; i++) {
if (users[i] == strUserName)
{
Response.Redirect("Default.aspx?value=1");
}
}
if (users == null)
Application["user"] = strUserName;
else
Application["user"] += "," + strUserName;
intUserNum += 1;
Application["userNum"] = intUserNum.ToString();
Session["user"] = strUserName;
Application.UnLock();
Response.Redirect("main.aspx"); ;
}
}
public partial class Left : System.Web.UI.Page
{
private ArrayList ItemList = new ArrayList();
protected void Page_Load(object sender, EventArgs e)
{
Application.Lock();
if (Session["user"] == null)
Response.Redirect("Default.aspx");
else
Label1.Text = Session["user"].ToString();
int userCount = int.Parse(Application["userNum"].ToString());
Label2.Text = userCount.ToString();
string user = Application["user"].ToString();
string[] users = user.Split(',');
for (int i = (userCount-1); i >= 0; i--) {
ItemList.Add(users[i]);
}
ListBox1.DataSource = ItemList;
ListBox1.DataBind();
Application.UnLock();
}
}
protected void Page_Load(object sender, EventArgs e)
{
Application.Lock();
if (!IsPostBack) {
string chat=Application["chats"].ToString();
int chatNum=int.Parse(Application["current"].ToString()) ;
string[] chats = chat.Split(',');
for (int i = chatNum - 1; i >= 0; i--)
{
if(chatNum==0)
TextBox1.Text=chats[i];
else
TextBox1.Text=TextBox1.Text+"\n"+chats[i];
}
}
Application.UnLock();
}
public partial class bottom : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Application.Lock();
string userName = Application["user"].ToString();
string[] users = userName.Split(',');
DropDownList1.DataSource = users;
DropDownList1.DataBind();
Application.UnLock();
}
protected void Button1_Click(object sender, EventArgs e)
{
Application.Lock();
int current = int.Parse(Application["current"].ToString());
string liaotian = Session["user"] + "对" + DropDownList1.SelectedValue.ToString() + "说:" + TextBox1.Text.Trim() + DateTime.Now.ToString();
if (current == 0 || current > 40)
{
current = 0;
Application["chats"] = liaotian;
}else{
Application["chats"] +=","+ liaotian;
}
current += 1;
Application["current"] = (object)current;
Application.UnLock();
}
}
<div>
<iframe id="ifraLeft" name="ifraLeft" src="Left.aspx"
style="width:200px;height:500px;float:left;margin-left:10px;margin-top:10px;background-color:grey;border:2px solid #000000"></iframe>
<iframe id="ifraRight" name="ifraRight" src="Right.aspx"
style="width:700px;height:500px;float:left;margin-top:10px;background-color:#000000;border:2px solid #000000;"></iframe>
<iframe id="ifrabottom" name="ifrabottom" src="bottom.aspx"
style="width:900px;height:50px;margin-left:10px;margin-top:10px;background-color:red;border:2px solid #000000;"></iframe>
</div>
案例代码下载
C#实例之简单聊天室(状态管理)的更多相关文章
- java web利用mvc结构实现简单聊天室功能
简单聊天室采用各种内部对象不适用数据库实现. 一个聊天室要实现的基本功能是: 1.用户登录进入聊天室, 2.用户发言 3.用户可以看见别人发言 刚才算是简单的需求分析了,现在就应该是进 ...
- 基于Server-Sent Event的简单聊天室 Web 2.0时代,即时通信已经成为必不可少的网站功能,那实现Web即时通信的机制有哪些呢?在这门项目课中我们将一一介绍。最后我们将会实现一个基于Server-Sent Event和Flask简单的在线聊天室。
基于Server-Sent Event的简单聊天室 Web 2.0时代,即时通信已经成为必不可少的网站功能,那实现Web即时通信的机制有哪些呢?在这门项目课中我们将一一介绍.最后我们将会实现一个基于S ...
- Python Socket 简单聊天室2
上篇文章写了一个简单的单线程的一问一答的简单聊天室.这次我们使用SocketServer模块搭建一个多线程异步的聊天室. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ...
- Asp.Net SignalR - 简单聊天室实现
简单聊天室 使用持久链接类我们就可以做一些即时通讯的应用了,我使用Group做了一个简单的聊天室,先上图技术细节下面再讲 可以加入聊天室.创建聊天室.发送消息,下面就说说我是如何通过Group做出来的 ...
- SpringBoot 搭建简单聊天室
SpringBoot 搭建简单聊天室(queue 点对点) 1.引用 SpringBoot 搭建 WebSocket 链接 https://www.cnblogs.com/yi1036943655/p ...
- ASP.NET SingalR + MongoDB 实现简单聊天室(一):搭建基本框架
ASP.NET SingalR不多介绍.让我介绍不如看官网,我这里就是直接上源代码,当然代码还是写的比较简单的,考虑的也少,希望各位技友多多提意见. 先简单介绍聊天室功能: 用户加入聊天室,自动给用户 ...
- 利用socket.io+nodejs打造简单聊天室
代码地址如下:http://www.demodashi.com/demo/11579.html 界面展示: 首先展示demo的结果界面,只是简单消息的发送和接收,包括发送文字和发送图片. ws说明: ...
- C++ socket 网络编程 简单聊天室
操作系统里的进程通讯方式有6种:(有名/匿名)管道.信号.消息队列.信号量.内存(最快).套接字(最常用),这里我们来介绍用socket来实现进程通讯. 1.简单实现一个单向发送与接收 这是套接字的工 ...
- C#基于Socket的简单聊天室实践
序:实现一个基于Socket的简易的聊天室,实现的思路如下: 程序的结构:多个客户端+一个服务端,客户端都是向服务端发送消息,然后服务端转发给所有的客户端,这样形成一个简单的聊天室功能. 实现的细节: ...
随机推荐
- java12类的无参方法
package com.jh.test01; public class AutoLion { // 属性: 颜色 黄色 String color = "黄色"; // 函数:跑,叫 ...
- centos系统组件优化
CentOS Linux在公司服务器上广泛被使用,本文总结了一些常见的加固方法. 基本原则: 最小的权限+最小的服务=最大的安全 操作之前先备份: 为避免配置错误无法登录主机,请始终保持有一个终端已用 ...
- OsgEearh 中的 FeatureEditor的实现原理
先来看看FeatureEditor的用法: const osgEarth::SpatialReference* mapSRS = mapNode->getMapSRS(); osgEarth:: ...
- 手写-- K-means++
1. K-means++原理 K均值聚类属于启发式方法,不能保证收敛到全局最优,初始中心的选择会直接影响聚类结果.K-means是随机选择样本点作为聚类中心,容易造成算法局部收敛或者需要较多迭代次数, ...
- Matplotlib数据可视化(1):入门介绍
1 matplot入门指南¶ matplotlib是Python科学计算中使用最多的一个可视化库,功能丰富,提供了非常多的可视化方案,基本能够满足各种场景下的数据可视化需求.但功能丰富从另一方面来 ...
- k8s系列---Service之ExternalName用法
需求:需要两个不同的namespace之间的不同pod可以通过name的形式访问 实现方式: A:在其他pod内ping [svcname].[namespace] ping出来到结果就是svc的ip ...
- 在Unity中使用 luajit 64位加密
参考:https://blog.csdn.net/sun19880421/article/details/68070696 https://blog.csdn.net/mydreamremindme/ ...
- Go语言基础之面向对象编程中
1 Golang面向对象编程基本介绍 Golang仍然有面向对象编程的继承,封装和多态的特性,只是实现的方式和其它OPP语言不一样,随后分别介绍Golang对面向对象编程的三大特性是如何实现的. 2 ...
- Arm开发板+Qt学习之路-开发板显示 /bin/sh: ./hello: Permission denied
将pc上交叉编译完成的可执行文件hello,通过串口传输到开发板上后,执行./hello显示 /bin/sh: ./hello: Permission denied 解决方案:在开发板上执行 chm ...
- python爬虫实战:基础爬虫(使用BeautifulSoup4等)
以前学习写爬虫程序时候,我没有系统地学习爬虫最基本的模块框架,只是实现自己的目标而写出来的,最近学习基础的爬虫,但含有完整的结构,大型爬虫含有的基础模块,此项目也有,“麻雀虽小,五脏俱全”,只是没有考 ...