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.
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.
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.