Hi Michael,
i saw at source that you define the content-type charset by using a
non-dynamic value.
this.xmlHttp.setRequestHeader("Content-Type", "text/plain;
charset=utf-8");
This is the reason why it did not change. You can use the dynamic
value: HttpContext.Current.Response.ContentEncoding.WebName
this.xmlHttp.setRequestHeader("Content-Type", "text/plain; charset=" +
HttpContext.Current.Response.ContentEncoding.WebName);
And please update with the same value the content type charset in
the core.js,prototype.js,...... response.
To get automatically the defined charset response code in the
web.config. Can you update the ajax pro with this change until the
night?
Thank you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---