Re: Validating user input, when the form element data contains ' or " or > or <
Posted By:
Michael_Wax
Posted On:
Monday, April 9, 2001 08:28 AM
On the input side, you should have no problem: the user input will be URL encoded before transmission back to the server, so that special characters should not cause any problems. If you want to display special characters, I think that you will need to convert them into HTML escape characters. For example, for a double quote ("), you could use " or ", and for < you could use < or <