I'm trying to pass several values through a querystring. Unfortunately the values contain special characters that cause the querystring to mess up.
add.asp?article_name=Arts&Humanities?article_id=342
The above querystring messes up because of the '&' between Arts&Humanities, it thinks that Humanities is the next value being passed. How can I rewrite my querystring so it doesn't mess up when users enter '&' in the form?
add.asp?article_name=Arts&Humanities?article_id=342
The above querystring messes up because of the '&' between Arts&Humanities, it thinks that Humanities is the next value being passed. How can I rewrite my querystring so it doesn't mess up when users enter '&' in the form?