C clintonG Jul 4, 2006 #1 Is there any way to redirect the output from Request Validation to an actual page of our choosing?
C clintonG Jul 4, 2006 #2 Solved myself as often happens no thanks to MSDN documentation... // global.asax catches the Request Validation error... void Application_Error(object sender, EventArgs e) { // Code that runs when an unhandled error occurs Response.Redirect("~/ErrorPages/ErrorResponse.aspx"); } <%= Clinton Gallagher NET csgallagher AT metromilwaukee.com URL http://www.metromilwaukee.com/clintongallagher/
Solved myself as often happens no thanks to MSDN documentation... // global.asax catches the Request Validation error... void Application_Error(object sender, EventArgs e) { // Code that runs when an unhandled error occurs Response.Redirect("~/ErrorPages/ErrorResponse.aspx"); } <%= Clinton Gallagher NET csgallagher AT metromilwaukee.com URL http://www.metromilwaukee.com/clintongallagher/