程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 一個在線用戶列表統計程序

一個在線用戶列表統計程序

編輯:C#入門知識

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;

namespace OnlineUser
{
    public class Global : System.Web.HttpApplication
    {

        protected void Application_Start(object sender, EventArgs e)
        {
            #region OnlineUsers

            try
            {
                DataTable userTable = new DataTable();
                userTable.Columns.Add("SessionID");
                userTable.Columns.Add("UserIP");
                userTable.Columns.Add("Browser");
                userTable.Columns.Add("OSName");
               
                userTable.AcceptChanges();
                Application.Lock();
                Application["OnlineUsers"] = userTable;
                Application.UnLock();
            }
            catch
            { }

            #endregion
        }

        protected void Session_Start(object sender, EventArgs e)
        {
            //用Cookie是為了防止同一個用戶重復計數
            HttpCookie cookie = Request.Cookies["user"];
            if (null == cookie)//確定是否存在用戶輸入的cookie
            {           
                cookie = new HttpCookie("user");//創建一個名稱是user的cookie對象
                cookie.Value = "used";//為該cookie賦值,只能是字符串,非字符串需轉換
                cookie.Expires = DateTime.Now.AddHou

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved