资源简介
说明: 用ASP.NET中的Application对象实现的简易聊天室网页 ^_^
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Content : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
int peopleCurrent = Int32.Parse(Application[“current“].ToString());
Application.Lock();
string strChats = Application[“chats“].ToString();
string[] strChat = strChats.Split(‘‘);
for (int i = strChat.Length - 1; i >= 0; i--)
{
if (peopleCurrent == 0)
{
txtContent.Text = strChat[i].ToString();
}
else
{
txtContent.Text = txtContent.Text + “\n“ + strChat[i].ToString();
}
}
Application.UnLock();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-11-17 13:37 Chat\
文件 556 2011-11-17 13:37 Chat\Content.aspx
文件 856 2011-11-17 13:41 Chat\Content.aspx.cs
文件 2646 2011-11-15 23:01 Chat\Default.aspx
文件 1512 2011-11-17 13:45 Chat\Default.aspx.cs
文件 1116 2011-11-15 22:04 Chat\Global.asax
目录 0 2011-11-17 13:26 Chat\Images\
文件 40994 2010-03-29 16:17 Chat\Images\1.gif
文件 2099 2010-03-29 16:18 Chat\Images\1_03.gif
文件 12398 2010-03-29 16:15 Chat\Images\2_01.gif
文件 194 2010-03-29 16:15 Chat\Images\2_02.gif
文件 1983 2010-03-29 16:15 Chat\Images\2_04.gif
文件 1271 2010-03-29 16:16 Chat\Images\2_06-02.gif
文件 1295 2010-03-29 16:16 Chat\Images\2_06.gif
文件 511 2011-11-17 13:31 Chat\List.aspx
文件 924 2011-11-17 13:36 Chat\List.aspx.cs
文件 1106 2011-11-15 22:16 Chat\Login.aspx
文件 1725 2011-11-15 22:15 Chat\Login.aspx.cs
文件 856 2011-11-15 22:52 Chat\st
文件 292 2011-11-15 22:00 Chat\web.config
- 上一篇:blowfish算法的C#实现
- 下一篇:C# ASP.NET- 在线投票系统 简单
相关资源
- C# ASP.NET- 在线投票系统 简单
- blowfish算法的C#实现
- c# 多线程轮询,等待,回调操作
- C#连接数据库表格显示
- SignIn.zip
- 百度开源webuploader文件上传组件ASP.N
- C# mapx 开发GIS
- FileSendProtocol_20170920.rar
- 基于C#的onvif协议之抓图
- c#高级编程 第十版 中文完整版
- ASP.NET写的简易网上聊天室适于初学者
- C# 动态生成柏拉图
- C#实现动态的曲线图
- 控制台c#下查询修改插入学生信息
- 用C#开发的一个电子时钟
- C#、Asp.Net在线翻译源码
- c# 代码编辑控件(代码着色控件)
- WPF-省市县3级联动(C#数据自动绑定,
- C# 三层架构设计模型
- c#winform开发运动控制卡
- C#开发交互式CAD系统
- CS开发框架 最新Ribbin版C#源码 界面美
- 自定义时间轴,Custom Slider,WPF编程
- 用c#实现画图功能可以画出各种图形,
- C# socket通信实例226433
- C#ip地址查看器
- PLC通过TCP/IP协议通信C#源码
- C#写的地理信息系统初级代码
- 基于C#的多线程的网页抓取
- 生产者消费者为模型的多线程编程c
评论
共有 条评论