What's the best way to handle errors such as
A potentially dangerous Request.Form value was detected from the client"
in ASP.NET?
I'd like to keep the validation on, as my forms have no valid reasons to be allowing HTML characters. However, I'm not quite sure how to handle this error in a more friendly manner. I tried handling it in a Page_Error
but, as far as I can tell, this occurs in a lower level section so the Page_Error
function never fires.
Therefore, I may have to resort to using Application_Error
in my Global.asax
file. If this is the only way of handling that error, is there a way of specifically handling that one error? I don't want to handle all application errors in the same manner.
Thanks
See Question&Answers more detail:os