|
Rank: Member Groups: Member
Joined: 9/10/2007 Posts: 11
|
Hi,
I am calling the server using: eo_Callback ('cbpMain','ÅÄÖåäö');
On the serverside (aspx.vb) I loose the characters....(swedish)....
How can I prevent this?
�=63 �=63 �=63 �=63 �=63 �=63
Kind regards
David
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi David,
Please check your requestEncoding and responseEncoding in your web.config, also check whether you have any code that specifically set the Culture. AJAX solution only works with UTF-8.
Thanks
|
|
Rank: Member Groups: Member
Joined: 9/10/2007 Posts: 11
|
Web config: <globalization requestEncoding="UTF-8" responseEncoding="UTF-8" culture="sv-SE" /> and still the callback javascript is not giving the server utf-8...is it?
Is there a way to handle this on the client or serverside? I really need the characters....
Kind regards
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Another way is to put the contents you want to pass back to the server into a hidden input field. You will then be able to access it on the server side via Request.Form.
Thanks
|
|