I am having a problem with special characters.
I have a input box that will allow visitor to my page to enter messages.
However, when the messages contained quotes, single quote, and other special characters, it will show an error when inserting to the DB
I manage to fix the single quote ... like so
strH = Replace(strH, "'", "‘")
but I cannot figure out how to fix the quote (") ...
Please help!!