I am creating an http module where I want to check if a request comes from an authenticated user and is redirected to the login page if it is not.
I registered the module in the web.config file, and I have the following code that throws an exception:
public class IsAuthModule : IHttpModule { public void Dispose() { } public void Init(HttpApplication TheApp) { var TheRequest = TheApp.Request; } }
He throws an exception stating that "Request is not available in this context"
What am I doing wrong?
source share