我如何转换:
<%@ Application Language="C#" %>
对于使用HttpModule的方案?
另外,我可以将Global.asax编写为纯C#而不是使用标签吗?
在自定义模块的init中,您需要检索Session模块并为Start事件添加事件处理程序.
public void Init(HttpApplication context) { context.BeginRequest += new EventHandler(Begin_Request); IHttpModule sessionModule = context.Modules["Session"]; if(sessionModule != null && sessionModule.GetType() == typeof(System.Web.SessionState.SessionStateModule)) { (sessionModule as System.Web.SessionState.SessionStateModule).Start += new EventHandler(CustomHttpModule_Start); } }
另外,我可以编写Global.asax aspure C#而不是使用标签吗?
是的,您可以在Global.asax中添加代码并将内容更改为
<%@ Application Language="C#" CodeBehind="Global.asax.cs" Inherits="Global" %>
您的代码应该继承自System.Web.HttpApplication
public class Global : System.Web.HttpApplication { public Global() { } void Session_Start(object sender, EventArgs e) { // Code that runs when a new session is started } }