I'm posting my form via JavaScript (Dojo) XHR. Everything works fine except when I wish to post any special characters. For example XHR tags:
<someTag>
I get error 500 (internal error). How can I solve this?
|
I'm posting my form via JavaScript (Dojo) XHR. Everything works fine except when I wish to post any special characters. For example XHR tags:
I get error 500 (internal error). How can I solve this? |
|||||||
|
|
Seems that your server-side code is interpreting the posted values as code instead of a string. I would need an example of your server side code to improve that but on the client side you could use:
Note that it is not, I repeat, NOT safe to rely on client side character encoding. You should fix this issue on the server side. |
|||||||
|