Serializing international characters with jQuery ajax form submit consumed by classic asp
I'm having massive headaches serializing international characters. I'm updating classic ASP pages which have windows-1252 as charset, when I serialize and send via ajax, my german characters are gett开发者_开发百科ing corrupted. Has anyone else run into this? any solutions?
just in case someone else has this problem, the resolution is to have <%@ codepage=65001 %>
at the top of the receiving page. jquery.serialize() serializes using utf8 and this basically puts the receiving page in the correct codepage
精彩评论