I have a number of webforms which must be able to accept XML input (containing, of course, the < and > characters, which I believe is what is causing problems). However, presently whenever I click a submit button and one of the form fields contains this kind of input a Sys.WebForms.PageRequestManagerServerErrorException exception with code 500 is thrown. If the input has no < and > everything goes smooth. How can I work around this?
I have a number of webforms which must be able to accept XML input
Share
I would be cautious about turning off Page validation. Look at HTML Encoding the text instead.