我希望能够向用户显示其中包含非法字符的字段 目前,我在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=");
}
}
由于 达伦