• 大小: 66KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-10
  • 语言: C#
  • 标签: C#  聊天室  

资源简介

说明: 用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\style.css
     文件         292  2011-11-15 22:00  Chat\web.config

评论

共有 条评论