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" %>