簡體   English   中英

當頁面上發生特定錯誤時,ASP.NET重定向到頁面

[英]ASP.NET redirect to a page when a specific error occurs on a page

抱歉,如果這是一個重復的問題。 但是,我嘗試尋找答案,但似乎找不到。

當發生特定錯誤時(在我的情況下,當請求太大時),ASP.NET中是否有一種方法可以重定向到頁面。 僅當錯誤發生在特定頁面上時,而不僅僅是任何頁面上才需要。

提前致謝!

正如ADyson在評論中所說,也許可以使用try - catch塊來解決這種情況。

try
{
    // put the code that you want to try here
}
catch(Exception specificException)
{
    return RedirectToAction(actionName, controllerName, routeValues);
}

讓我知道是否有幫助。

是! 如下:

Global.asax文件中:

protected void Application_Error(object sender, EventArgs e)
{
     Exception exception = Server.GetLastError();

     HttpException httpException = exception as HttpException;

     if (httpException != null)
     {
         if (httpException.GetHttpCode() == 404)
         {
              Server.ClearError();
              Response.Redirect("~/Home/PageNotFound");
              return;
         }
     }

     //Ignore from here if don't want to store the error in database

     HttpContextBase context = new HttpContextWrapper(HttpContext.Current);
     RouteData routeData = RouteTable.Routes.GetRouteData(context);

     string controllerName = null;
     string actionName = null;
     if (routeData != null)
     {
         controllerName = routeData.GetRequiredString("controller");
         actionName = routeData.GetRequiredString("action");
     }


     ExceptionModel exceptionModel = new ExceptionModel()
     {
         ControllerName = controllerName ?? "Not in controller",
         ActionOrMethodName = actionName ?? "Not in Action",
         ExceptionMessage = exception.Message,
         InnerExceptionMessage = exception.InnerException != null ? exception.InnerException.Message : "No Inner exception",
         ExceptionTime = DateTime.Now
     };

     using (YourDbContext dbContext = new YourDbContext())
     {
         dbContext.Exceptions.Add(exceptionModel);
         dbContext.SaveChanges();
     }

    // Ignore till here if you don't want to store the error on database

    // clear error on server
    Server.ClearError();
    Response.Redirect("~/Home/Error");
}

然后在控制器中:

public class HomeController : Controller
{
    [AllowAnonymous]
    public ActionResult Error()
    {
        return View();
    }

    [AllowAnonymous]
    public ActionResult PageNotFound()
    {
        return View();
    }
}

這是處理ASP.NET MVC應用程序中的錯誤所需的一切。還可以根據個人喜好進行自定義。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM