程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> ASP.NET中使用Application對象實現簡單在線人數統計功能

ASP.NET中使用Application對象實現簡單在線人數統計功能

編輯:關於ASP.NET

       這篇文章主要介紹了ASP.NET中使用Application對象實現簡單在線人數統計功能,本文給出實現步驟和相應代碼實例,需要的朋友可以參考下

      注:最近在復習ASP.NET,為了加深印象,會制作一些小的demo程序,分享給大家。

      1 新建ASP.NET網站,編輯Global.asax文件,修改後的文件內容如下所示。

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 <%@ Application Language="C#" %>   <script runat="server">   void Application_Start(object sender, EventArgs e) { // 在應用程序啟動時運行的代碼 Application["CurrentUserCount"] = 0; }   void Application_End(object sender, EventArgs e) { // 在應用程序關閉時運行的代碼   }   void Application_Error(object sender, EventArgs e) { // 在出現未處理的錯誤時運行的代碼   }   void Session_Start(object sender, EventArgs e) { // 在新會話啟動時運行的代碼 Application.Lock(); Application["CurrentUserCount"] = (int)Application["CurrentUserCount"] + 1; Application.UnLock(); }   void Session_End(object sender, EventArgs e) { // 在會話結束時運行的代碼。 // 注意: 只有在 Web.config 文件中的 sessionstate 模式設置為 InProc 時,才會引發 Session_End 事件。 // 如果會話模式設置為 StateServer // 或 SQLServer,則不會引發該事件。 Application.Lock(); Application["CurrentUserCount"] = (int)Application["CurrentUserCount"] - 1; Application.UnLock(); }   </script>

      2 修改Web.config文件,增加如下配置節點,新增的配置節點位節點下。

       代碼如下:

      

      3 在Default.aspx文件中添加一個標簽來顯示當前在線人數。

      代碼如下:

      protected void Page_Load(object sender, EventArgs e)

      {

      this.Label1.Text = Application["CurrentUserCount"].ToString();

      }

      4 先後使用IE和Chrome浏覽器訪問應用,得到下圖所示結果。

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