vote up 0 vote down star
1

This is happening in one cookie with keys in one key only. The value should be "ÅÙÏ‘‹„‰Š„‹".

flag
oh boy, you might want to make this a little clearer with some more details – DrG Mar 18 at 14:44
and, perhaps a different font, or unicode or something? – Brian Postow Mar 18 at 15:02
We see garbage for the value you quoted above. If you see something different, you have to tell us what encoding you expect this to be in. – Eddie Mar 18 at 16:14
It is like garbage...it is a html encoded text. In the cookie actually I had this %C5%D9%CF%91%89%8D%8E%88%8D%8B – pabben Mar 18 at 18:26
While debugging asp, in the VS2008 Watcher Request.cookies(myCookieName) [RawView] Item I see the correct value. but then I try to reach the value using Request.Cookies(myCookieName)("myKey") I get the “ϑ”. – pabben Mar 18 at 18:38
show 2 more comments

2 Answers

vote up 0 vote down check

Final Solution: Save As different file with "correct" encoding Changed encoding

  • From "Unicode (UTF-8 with signature) -Codepage 65001"
  • To "Western European (Windows) - Codepage 1252"
link|flag
vote up 2 vote down

The value should be "ÅÙÏ‘‹„‰Š„‹".

Erm, really? That looks like the corrupted, wrong-character set version to me! :-) Either way, “ϑ” is what you get when you save that string in Windows Western European encoding (cp1252) and then read it back in as UTF-8, removing all the ‘invalid character’ codes that result because it's not a valid UTF-8 string. So you've got a classic reading-and-writing-using-different-encodings problem.

As a general rule you can't get away with putting non-ASCII characters in a cookie (name or value) directly. You'll need an application-level encoding mechanism of some sort; one of the most popular ways is to URL-encode the UTF-8 representation of the characters you want, similarly to how JavaScript's encodeURIComponent does it.

(Unfortunately ASP classic has very poor support for handling Unicode.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.