• 大小: 1.28M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 聊天  C#  c  网页  

资源简介

3种c#网页聊天

资源截图

代码片段和文件信息

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();
            

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      67094  2014-10-11 11:35  C# 网页聊天\Chat.zip

     文件       4372  2014-10-11 11:37  C# 网页聊天\ChatNew.rar

     文件     379797  2014-10-11 11:28  C# 网页聊天\CSharpWebsocketDemo.zip

     目录          0  2017-10-19 16:38  C# 网页聊天

     文件        556  2011-11-17 13:37  C# 网页聊天\C# 网页聊天\Chat\Chat\Content.aspx

     文件        856  2011-11-17 13:41  C# 网页聊天\C# 网页聊天\Chat\Chat\Content.aspx.cs

     文件       2646  2011-11-15 23:01  C# 网页聊天\C# 网页聊天\Chat\Chat\Default.aspx

     文件       1512  2011-11-17 13:45  C# 网页聊天\C# 网页聊天\Chat\Chat\Default.aspx.cs

     文件       1116  2011-11-15 22:04  C# 网页聊天\C# 网页聊天\Chat\Chat\Global.asax

     文件      40994  2010-03-29 16:17  C# 网页聊天\C# 网页聊天\Chat\Chat\Images\1.gif

     文件       2099  2010-03-29 16:18  C# 网页聊天\C# 网页聊天\Chat\Chat\Images\1_03.gif

     文件      12398  2010-03-29 16:15  C# 网页聊天\C# 网页聊天\Chat\Chat\Images\2_01.gif

     文件        194  2010-03-29 16:15  C# 网页聊天\C# 网页聊天\Chat\Chat\Images\2_02.gif

     文件       1983  2010-03-29 16:15  C# 网页聊天\C# 网页聊天\Chat\Chat\Images\2_04.gif

     文件       1271  2010-03-29 16:16  C# 网页聊天\C# 网页聊天\Chat\Chat\Images\2_06-02.gif

     文件       1295  2010-03-29 16:16  C# 网页聊天\C# 网页聊天\Chat\Chat\Images\2_06.gif

     文件        511  2011-11-17 13:31  C# 网页聊天\C# 网页聊天\Chat\Chat\List.aspx

     文件        924  2011-11-17 13:36  C# 网页聊天\C# 网页聊天\Chat\Chat\List.aspx.cs

     文件       1106  2011-11-15 22:16  C# 网页聊天\C# 网页聊天\Chat\Chat\Login.aspx

     文件       1725  2011-11-15 22:15  C# 网页聊天\C# 网页聊天\Chat\Chat\Login.aspx.cs

     文件        856  2011-11-15 22:52  C# 网页聊天\C# 网页聊天\Chat\Chat\style.css

     文件        292  2011-11-15 22:00  C# 网页聊天\C# 网页聊天\Chat\Chat\web.config

     文件        147  2017-10-19 17:04  C# 网页聊天\C# 网页聊天\Chat\Web.config

     文件      67094  2014-10-11 11:35  C# 网页聊天\C# 网页聊天\Chat.zip

     文件        105  2008-11-22 12:33  C# 网页聊天\C# 网页聊天\ChatNew\ChatNew\Default.aspx

     文件        461  2008-11-22 12:31  C# 网页聊天\C# 网页聊天\ChatNew\ChatNew\Default.aspx.cs

     文件       8631  2008-11-22 12:29  C# 网页聊天\C# 网页聊天\ChatNew\ChatNew\web.config

     文件       1019  2008-11-22 12:38  C# 网页聊天\C# 网页聊天\ChatNew\ChatNew\xhrequeest.htm

     文件       2296  2008-11-22 11:50  C# 网页聊天\C# 网页聊天\ChatNew\ChatNew\xmlHttpRequest.js

     文件        147  2017-10-19 17:03  C# 网页聊天\C# 网页聊天\ChatNew\Web.config

............此处省略192个文件信息

评论

共有 条评论