使用ASP.NET Global.asax 檔案
Global.asax 檔案,有時候叫做 ASP.NET 應用程式檔案,提供了一種在一箇中心位置響應應用程式級或模組級事件的方法。你可以使用這個檔案實現應用程式安全性以及其它一些任務。下面讓我們詳細看一下如何在應用程式開發工作中使用這個檔案。
概述
Global.asax 位於應用程式根目錄下。雖然 Visual Studio .NET 會自動插入這個檔案到所有的 ASP.NET 專案中,但是它實際上是一個可選檔案。刪除它不會出問題——當然是在你沒有使用它的情況下。.asax 副檔名指出它是一個應用程式檔案,而不是一個使用 aspx 的 ASP.NET 檔案。
Global.asax 檔案被配置為任何(通過 URL 的)直接 HTTP 請求都被自動拒絕,所以使用者不能下載或檢視其內容。ASP.NET 頁面框架能夠自動識別出對Global.asax 檔案所做的任何更改。在 Global.asax 被更改後ASP.NET 頁面框架會重新啟動應用程式,包括關閉所有的瀏覽器會話,去除所有狀態資訊,並重新啟動應用程式域。
程式設計
Global.asax 檔案繼承自HttpApplication 類,它維護一個HttpApplication 物件池,並在需要時將物件池中的物件分配給應用程式。Global.asax 檔案包含以下事件:
· Application_Init:在應用程式被例項化或第一次被呼叫時,該事件被觸發。對於所有的HttpApplication 物件例項,它都會被呼叫。
· Application_Disposed:在應用程式被銷燬之前觸發。這是清除以前所用資源的理想位置。
· Application_Error:當應用程式中遇到一個未處理的異常時,該事件被觸發。
· Application_Start:在HttpApplication 類的第一個例項被建立時,該事件被觸發。它允許你建立可以由所有HttpApplication 例項訪問的物件。
· Application_End:在HttpApplication 類的最後一個例項被銷燬時,該事件被觸發。在一個應用程式的生命週期內它只被觸發一次。
· Application_BeginRequest:在接收到一個應用程式請求時觸發。對於一個請求來說,它是第一個被觸發的事件,請求一般是使用者輸入的一個頁面請求(URL)。
· Application_EndRequest:針對應用程式請求的最後一個事件。
· Application_PreRequestHandlerExecute:在 ASP.NET 頁面框架開始執行諸如頁面或 Web 服務之類的事件處理程式之前,該事件被觸發。
· Application_PostRequestHandlerExecute:在 ASP.NET 頁面框架結束執行一個事件處理程式時,該事件被觸發。
· Applcation_PreSendRequestHeaders:在 ASP.NET 頁面框架傳送 HTTP 頭給請求客戶(瀏覽器)時,該事件被觸發。
· Application_PreSendContent:在 ASP.NET 頁面框架傳送內容給請求客戶(瀏覽器)時,該事件被觸發。
· Application_AcquireRequestState:在 ASP.NET 頁面框架得到與當前請求相關的當前狀態(Session 狀態)時,該事件被觸發。
· Application_ReleaseRequestState:在 ASP.NET 頁面框架執行完所有的事件處理程式時,該事件被觸發。這將導致所有的狀態模組儲存它們當前的狀態資料。
· Application_ResolveRequestCache:在 ASP.NET 頁面框架完成一個授權請求時,該事件被觸發。它允許快取模組從快取中為請求提供服務,從而繞過事件處理程式的執行。
· Application_UpdateRequestCache:在 ASP.NET 頁面框架完成事件處理程式的執行時,該事件被觸發,從而使快取模組儲存響應資料,以供響應後續的請求時使用。
· Application_AuthenticateRequest:在安全模組建立起當前使用者的有效的身份時,該事件被觸發。在這個時候,使用者的憑據將會被驗證。
· Application_AuthorizeRequest:當安全模組確認一個使用者可以訪問資源之後,該事件被觸發。
· Session_Start:在一個新使用者訪問應用程式 Web 站點時,該事件被觸發。
· Session_End:在一個使用者的會話超時、結束或他們離開應用程式 Web 站點時,該事件被觸發。
這個事件列表看起來好像多得嚇人,但是在不同環境下這些事件可能會非常有用。
使用這些事件的一個關鍵問題是知道它們被觸發的順序。Application_Init 和Application_Start 事件在應用程式第一次啟動時被觸發一次。相似地,Application_Disposed 和 Application_End 事件在應用程式終止時被觸發一次。此外,基於會話的事件(Session_Start 和 Session_End)只在使用者進入和離開站點時被使用。其餘的事件則處理應用程式請求,這些事件被觸發的順序是:
· Application_BeginRequest
· Application_AuthenticateRequest
· Application_AuthorizeRequest
· Application_ResolveRequestCache
· Application_AcquireRequestState
· Application_PreRequestHandlerExecute
· Application_PreSendRequestHeaders
· Application_PreSendRequestContent
· <>
· Application_PostRequestHandlerExecute
· Application_ReleaseRequestState
· Application_UpdateRequestCache
· Application_EndRequest
這些事件常被用於安全性方面。下面這個 C# 的例子演示了不同的Global.asax 事件,該例使用Application_Authenticate 事件來完成通過 cookie 的基於表單(form)的身份驗證。此外,Application_Start 事件填充一個應用程式變數,而Session_Start 填充一個會話變數。Application_Error 事件顯示一個簡單的訊息用以說明發生的錯誤。
protected void Application_Start(Object sender, EventArgs e) {
Application["Title"] = "Builder.com Sample";
}
protected void Session_Start(Object sender, EventArgs e) {
Session["startValue"] = 0;
}
protected void Application_AuthenticateRequest(Object sender, EventArgs e) {
// Extract the forms authentication cookie
string cookieName = FormsAuthentication.FormsCookieName;
HttpCookie authCookie = Context.Request.Cookies[cookieName];
if(null == authCookie) {
// There is no authentication cookie.
return;
}
FormsAuthenticationTicket authTicket = null;
try {
authTicket = FormsAuthentication.Decrypt(authCookie.Value);
} catch(Exception ex) {
// Log exception details (omitted for simplicity)
return;
}
if (null == authTicket) {
// Cookie failed to decrypt.
return;
}
// When the ticket was created, the UserData property was assigned
// a pipe delimited string of role names.
string[2] roles
roles[0] = "One"
roles[1] = "Two"
// Create an Identity object
FormsIdentity id = new FormsIdentity( authTicket );
// This principal will flow throughout the request.
GenericPrincipal principal = new GenericPrincipal(id, roles);
// Attach the new principal object to the current HttpContext object
Context.User = principal;
}
protected void Application_Error(Object sender, EventArgs e) {
Response.Write("Error encountered.");
}
這個例子只是很簡單地使用了一些Global.asax 檔案中的事件;重要的是要意識到這些事件是與整個應用程式相關的。這樣,所有放在其中的方法都會通過應用程式的程式碼被提供,這就是它的名字為Global 的原因。
這裡是前面的例子相應的 VB.NET 程式碼:
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
Application("Title") = "Builder.com Sample"
End Sub
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
Session("startValue") = 0
End Sub
Sub Application_AuthenticateRequest(ByVal sender As Object, ByVal e As
EventArgs)
' Extract the forms authentication cookie
Dim cookieName As String
cookieName = FormsAuthentication.FormsCookieName
Dim authCookie As HttpCookie
authCookie = Context.Request.Cookies(cookieName)
If (authCookie Is Nothing) Then
' There is no authentication cookie.
Return
End If
Dim authTicket As FormsAuthenticationTicket
authTicket = Nothing
Try
authTicket = FormsAuthentication.Decrypt(authCookie.Value)
Catch ex As Exception
' Log exception details (omitted for simplicity)
Return
End Try
Dim roles(2) As String
roles(0) = "One"
roles(1) = "Two"
Dim id As FormsIdentity
id = New FormsIdentity(authTicket)
Dim principal As GenericPrincipal
principal = New GenericPrincipal(id, roles)
' Attach the new principal object to the current HttpContext object
Context.User = principal
End Sub
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
Response.Write("Error encountered.")
End Sub
資源
Global.asax 檔案是 ASP.NET 應用程式的中心點。它提供無數的事件來處理不同的應用程式級任務,比如使用者身份驗證、應用程式啟動以及處理使用者會話等。你應該熟悉這個可選檔案,這樣就可以構建出健壯的ASP.NET 應用程式。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-607155/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Global.asax 檔案是什麼
- ASP.NET工程檔案(.csproj)檔案解讀ASP.NET
- ASP.NET MVC使用input標籤上傳檔案ASP.NETMVC
- ASP.NET Core 配置檔案ASP.NET
- ASP.NET Core - 入口檔案ASP.NET
- ASP.NET 檔案下載ASP.NET
- ASP.NET中下載檔案ASP.NET
- 【永春】Asp.Net中虛擬檔案系統的使用ASP.NET
- ASP.NET Core 檔案上傳ASP.NET
- asp.net下使用 jquery.form.js 上傳圖片(檔案)ASP.NETjQueryORMJS
- 淺談ASP.NET中檔案下載函式使用方法ASP.NET函式
- ASP.NET MVC 匯入Excel檔案ASP.NETMVCExcel
- asp.net (C#)生成html檔案ASP.NETC#HTML
- asp.net 操作INI配置檔案類ASP.NET
- 如何在ASP.NET中下載檔案ASP.NET
- 用ASP.NET上傳大檔案ASP.NET
- ASP.NET 2.0揭祕讀書筆記七——使用使用者配置檔案ProfileASP.NET筆記
- Asp.Net Core入門之配置檔案ASP.NET
- asp.net core 系列之靜態檔案ASP.NET
- ASP.NET Web Forms – XML 檔案簡介ASP.NETWebORMXML
- ASP.NET Core - .NET 6 的入口檔案ASP.NET
- [譯]ASP.NET Core 2.0 本地檔案操作ASP.NET
- 加密(Asp.Net配置檔案的)配置節加密ASP.NET
- asp.net 檔案下載與壓縮ASP.NET
- ASP.NET上傳檔案對檔案型別的高階判斷ASP.NET型別
- Asp.Net Core入門之靜態檔案ASP.NET
- ASP.NET Core檔案壓縮最佳實踐ASP.NET
- ASP.NET檔案下載的實用方法ASP.NET
- Asp.Net音訊檔案上傳和播放ASP.NET音訊
- asp.net利用jquery播放mp3檔案ASP.NETjQuery
- asp.net 上傳大檔案大小控制方案ASP.NET
- RSS檔案輸出(ASP.NET C#版)ASP.NETC#
- .htaccess檔案使用
- ASP.NET Core使用靜態檔案、目錄遊覽與MIME型別管理ASP.NET型別
- ASP.NET利用HttpHandler實現多副檔名檔案下載ASP.NETHTTP
- 【使用者概要檔案】建立使用者概要檔案
- ASP.NET下載檔案(彈出開啟儲存檔案對話方塊)ASP.NET
- 理解ASP.NET Core - 檔案伺服器(File Server)ASP.NET伺服器Server