[jQuery] Posting XML to an asp.net page (MVC) with jquery?
Hey folks, I have code such as:
$.post('/Controller/Process',
{ messageXml: escape(xml) },
function(txt) {
//debugger;
...dosomething
});
The xml gets sent, but its encoded. Anyone know how to unencode this?
Or is there a better way to submit xml to a page?