程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 解決vs2005下Global.asax缺少cs文件的使用不便

解決vs2005下Global.asax缺少cs文件的使用不便

編輯:C#入門知識

VS2005中發現Global.ascx沒有cs文件,所有程序都需要寫在一個文件,感覺好像又回到了CodeBeside時代,相當不給力~

於是,通過在App_Code文件夾下創建一個類Global.cs,同時該類使用partial修飾且繼承System.Web.HttpApplication。

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// <summary>
/// Global 的摘要說明
/// </summary>
public partial class Global : System.Web.HttpApplication
{
    #region 默認構造函數
    public Global()
   {
      //
      // TODO: 在此處添加構造函數邏輯
      //
    }
    #endregion

 

    void Application_Start(object sender, EventArgs e)
    {
        // 在應用程序啟動時運行的代碼
    }

    void Application_End(object sender, EventArgs e)
    {
        // 在應用程序關閉時運行的代碼

    }

    void Application_Error(object sender, EventArgs e)
    {
        // 在出現未處理的錯誤時運行的代碼

    }

    void Session_Start(object sender, EventArgs e)
    {
        // 在新會話啟動時運行的代碼
    }

    void Session_End(object sender, EventArgs e)
    {
        // 在會話結束時運行的代碼。
        // 注意: 只有在 Web.config 文件中的 sessionstate 模式設置為
        // InProc 時,才會引發 Session_End 事件。如果會話模式設置為 StateServer
    }


}


 

然後Global.asax繼承該類即可~

<%@ Application Language="C#" Inherits="Global" %>

 

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