我正在尝试访问HttpModule中的一个页面,我想我应该通过调用HttpContext.Current.Handler(这应该引用当前页面)来做到这一点,但我一直都是null。
我正在开发使用.Net 3.5框架。
我正在检查AuthorizeRequest和AuthenticateRequest
感谢。
答案 0 :(得分:10)
可能该请求尚未发送给处理程序(例如,您在BeginRequest
)。
答案 1 :(得分:5)
在AuthorizeRequest
和AuthenticateRequest
中,尚未创建处理程序。 (如果请求被拒绝,则不应创建处理程序)因此,此属性为null。
为什么选择Page
,你想做什么?
您可以尝试处理PostMapRequestHandler
,这会在解析Page
后发生,如果您决定拒绝该请求,则会抛出HttpException
或致电Response.End
。
但是,请注意,要获取处理程序的实例,其构造函数必须运行;确保它不会做任何关键或敏感的事情。
答案 2 :(得分:2)
我有类似的问题,终于找到了解决方案。 我的问题返回null然后在外部类上使用此代码。 我道歉,因为我的英语不好。
通过代码解决方案:(已经测试过)using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
//[Description of MyNamespace]
//|================================================================================>
//|-----*(In The Name Of GOD)*-----
//|================================================================================>
namespace MyNamespace
{
//Most Be "partial class" And ": System.Web.UI.Page" !!!!
public partial class MyClass : System.Web.UI.Page
{
//|============================================================>
//| Value Of Class.
//|============================================================>
static System.Web.UI.Page Page1 = null;
static System.Web.UI.Page Page2 = null;
int form1Index = -0;
//Most Be Static Method!!!!
public static void GetMyPage()
{
//Both are a result code.
//هر دو کد یه نتیجه می دهد
Page1 = HttpContext.Current.Handler as System.Web.UI.Page;
Page2 = (System.Web.UI.Page)System.Web.HttpContext.Current.Handler;
}
//|============================================================>
//| DO() Methods Of MyClass Class.
//|============================================================>
public void DO()
{
//Call Your Static Method => GetMyPage()
GetMyPage();
if (Page1 != null)
{
for (int i = 0; i < Page1.Controls.Count; i++)
{
if (Page1.Controls[i].ID == "form1")
{
form1Index = i;
break;
}
}
}
if (form1Index != -0)
{
for (int j = 0; j < Page1.Controls[form1Index].Controls.Count; j++)
{
string ControlsID = Page1.Controls[form1Index].Controls[j].ID;
// Code location ...
//محل قرار گیری کد ها...
}
}
}
//|============================================================>
//| Destructor Methods MyClass Class.
//|============================================================>
~MyClass() { }
}
}
答案 3 :(得分:0)
您使用什么方法访问此属性?
在IHttpModule.Init
中,它将是null
。您需要在收到的application
上注册事件处理程序作为Init
方法的参数,并在那里开展工作。