重定向后在自定义页面中显示HttpRequestValidationException的错误字段?

时间:2011-11-15 03:08:10

标签: asp.net

我希望能够向用户显示其中包含非法字符的字段 目前,我在Global.asax文件中有以下代码,如果HttpRequestValidationException为true,则会重定向到cusom错误页面。

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

        if (ex is HttpRequestValidationException)
        {
            Response.Redirect("IllegalCharactersError.aspx?error=");              
        }
    } 

由于 达伦

0 个答案:

没有答案