4
我正在創建一個http模塊,我想檢查一個請求是否來自經過身份驗證的用戶,如果不是,則重定向到登錄頁面。http模塊:請求不可用
我註冊在web.config文件中的模塊,我有以下代碼的投擲一個例外:
public class IsAuthModule : IHttpModule
{
public void Dispose() { }
public void Init(HttpApplication TheApp)
{
var TheRequest = TheApp.Request;
}
}
它扔,說一個例外「的要求是不是在這方面提供」
我在做什麼錯?
http://stackoverflow.com/questions/2518057/request-is-not-available-in-this-context – rahularyansharma