使用HttpModule而不是Global.asax

时间:2009-01-29 09:06:21

标签: c# asp.net

我如何转换:

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

<script runat="server">

    void Session_Start(object sender, EventArgs e) 
    {


    }

</script>

使用HttpModule的方案?

另外,我可以将Global.asax编写为纯C#而不是使用标签吗?

1 个答案:

答案 0 :(得分:5)

在自定义模块的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
  }
}