3

有没有办法从 asp.net 页面访问 HttpModule 的属性?

namespace MyHttpModule
{
    public class Module : IHttpModule
    {
        public string M_Property { get; set; }

        public void Init(HttpApplication context)
        {
4

1 回答 1

2

您可以从 ApplicationInstance 获取活动模块,例如我有一个模块可以将当前 RawUrl 保存在 BeginRequest 中:

  public class PlainModule : IHttpModule
  {
    private HttpApplication app = null;    
    public string CurrentRequestUrl;

    public void Init(HttpApplication Context)
    {
      this.app = Context;
      Context.BeginRequest += new System.EventHandler(Begin);
    }

    public void Dispose()
    {
    }

    private void Begin(Object Sender, EventArgs e)
    {
      this.CurrentRequestUrl = this.app.Request.RawUrl;
    }
  }

当然,您必须在 web.config 中注册您的模块:

  <system.web>
    <httpModules>
      <add name="PlainModule" type="WebApplication1.PlainModule, WebApplication1"/>
    </httpModules>
  </system.web>

然后您可以使用在 Web 配置中注册的名称获取模块实例,如下所示:

protected void Page_Load(object sender, EventArgs e)
{
  PlainModule pm = (PlainModule)HttpContext.Current.ApplicationInstance.Modules["PlainModule"];
  Response.Write("Current request URL : "  + pm.CurrentRequestUrl);
}
于 2012-08-14T14:26:19.180 回答