开发者

Access current instance of Page from a static class

开发者 https://www.devze.com 2022-12-24 19:33 出处:网络
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.Technically you could just get the current

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.


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
}


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号