Off Topic:
Man I haven't done an ASP post in a while!
The code below should replace the characters:
Code:
'opening double quotes
myvar = replace(myvar, chr(147), chr(34))
'closing double quotes
myvar = replace(myvar, chr(148), chr(34))
For future reference, you can open up charmap.exe and check the "Advanced View" checkbox to view more characters. In this case, you might want to look at the "Windows: Western" character set (the default in charmap is "Unicode"), since that's probably your server's default.

Originally Posted by
Thing
I hope were talking about the same quotes here, as I never really knew their official name.
That would be an "opening double quote" and "closing double quote" if you're talking about the example you posted
.
Bookmarks