Access current instance of Page from a static clas

2020-02-12 01:14发布

Basic question - is it possible to access the current Page from a static class in ASP.NET?

I am thinking no, as google turns up no results.

3条回答
ら.Afraid
2楼-- · 2020-02-12 01:50

Technically you could just get the current IHttpHandler for the request. Since Page implements that, then you could check to see if it is one.

var page = HttpContext.Current.CurrentHandler as Page;

if(page != null){
    // Do something with page
}
查看更多
迷人小祖宗
3楼-- · 2020-02-12 01:52

You can use HttpContext.CurrentHandler to return the current HttpHandler for the request. A Page class is simply a complex type of HttpHandler.

In order to access anything related to the Page properties though, you'll need to cast the result to type Page.

Honestly though, I would take Jeff's approach if possible, because by injecting the page reference in the method call, your method is much more testable (not to mention reliable, as you can use Page directly). Relying on anything to do with HttpContext tends to make your code untestable. Perhaps you're in a situation where you can't design the method like that, but it would be the way I would prefer to do it.

查看更多
够拽才男人
4楼-- · 2020-02-12 02:03

The simplest way has got to be passing the current page as a parameter to the method you're calling in the static class.

查看更多
登录 后发表回答