• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 聊天室  web  在线  聊天  

资源简介


资源截图

代码片段和文件信息

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 P_int_current = Convert.ToInt32(Application[“current“]);
        Application.Lock();
        string P_str_chats = Application[“chats“].ToString();
        string[] P_str_chat = P_str_chats.Split(‘‘);
        for (int i = P_str_chat.Length - 1; i >= 0; i--)
        {
            if (P_int_current == 0)
            {
                txt_Content.Text = P_str_chat[i].ToString();
            }
            else
            {
                txt_Content.Text = txt_Content.Text + “\n“ + P_str_chat[i].ToString();

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-10-10 19:29  .vs\
     目录           0  2019-10-10 19:29  .vs\Chat\
     目录           0  2019-10-10 19:29  .vs\Chat\v14\
     文件       57344  2019-10-10 19:31  .vs\Chat\v14\.suo
     文件        1715  2019-10-10 19:28  Chat.sln
     目录           0  2019-10-10 19:30  Chat\
     文件         484  2019-10-10 11:50  Chat\Content.aspx
     文件         870  2019-10-10 11:50  Chat\Content.aspx.cs
     文件        1782  2019-10-10 19:20  Chat\Default.aspx
     文件        1485  2019-10-10 15:55  Chat\Default.aspx.cs
     文件        1321  2019-10-10 15:42  Chat\Global.asax
     文件         406  2019-10-10 11:50  Chat\List.aspx
     文件         961  2019-10-10 18:12  Chat\List.aspx.cs
     文件        1255  2019-10-10 18:46  Chat\Login.aspx
     文件        2633  2019-10-10 19:30  Chat\Login.aspx.cs
     文件         358  2019-10-10 15:29  Chat\Web.config
     文件       27648  2019-09-26 11:44  hp.suo
     文件       51200  2019-10-10 11:50  hp.v11.suo

评论

共有 条评论