我得到錯誤:MVC的Application_Start本地主機重定向你太多次
當我重定向到從localhost redirected you too many times.
Application_Start
方法錯誤頁面
。
我的代碼看起來是這樣的:
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
protected void Application_Error(Object sender, EventArgs e)
{
var exception = Server.GetLastError();
if (exception != null)
{
Session["w"] = exception;
Response.Clear();
Server.ClearError();
Response.Redirect("~/Admin/Error");
}
}
}
當您顯示視圖/管理員/錯誤時,您是否有錯誤? – kblau
沒有...它給了我一個空的頁面說localhost重定向你太多次 – Tom