我想通過編程方式禁用網站出於許可原因,我想在httpmodule中執行此操作。我應該在IHttpModule中使用什麼事件來禁用網站?
伊夫試圖重定向上下文:
public void Init(HttpApplication context)
{
context.Response.Redirect("http://vls.pete.videolibraryserver.com");
}
但我得到的錯誤:
Response is not available in this context.
任何人都知道我怎樣纔能有效地禁止的網站,最好送他們到自定義頁面。