重定向到错误页面并显示用户友好错误

时间:2013-05-14 13:15:04

标签: c# asp.net error-handling

在我的应用程序中,我想重定向到错误页面。有一个标签会在错误页面上显示用户友好的错误。我可以重定向到该页面。问题是将标签设置为用户友好的错误。

if (xy.Count() >= 1)
{            
    foreach (var x in xy)
    {
        employeeEmploy.Add(x);
        Debug.WriteLine(x.employee_personal_id);
    }
}
else 
{
    Security.ErrorControl.displayErrorMsg = "Employee Employ currently doesn't have any persons inside";

    Debug.WriteLine(Security.ErrorControl.displayErrorMsg); // class that set and get the error message i want to display

    HttpContext.Current.Response.Redirect("ssperror.aspx"); // I am getting to redirect .. just need to set the label to the error message.

}

1 个答案:

答案 0 :(得分:0)

您可以在重定向时在查询字符串中传递错误消息(或者甚至更好的代表消息ID的id),因此最后一行将是:

  HttpContext.Current.Response.Redirect("ssperror.aspx?err_id=4"); 

然后在ssperror.aspx中你可以分析参数err_id,检索并在标签中显示错误信息:

if (Request.QueryString["err_id"] != null)
{
    lbl_error.text = retrieve_errormessage_from_code(Request.QueryString["err_id"]);
}