[jQuery] Re: Using $.ajax to post XML to an aspx page

2009-08-19 Thread Dhruva Sagar
@kcrichard this is from the jquery site *Sends an xml document as data to the server. By setting the processData option to false, the automatic conversion of data to strings is prevented.* var xmlDocument = [create xml document]; $.ajax({ url: "page.php", processData: false, data: xmlD

[jQuery] Re: Using $.ajax to post XML to an aspx page

2009-08-19 Thread Jules
Can't you pass the xml as a string and load it to dom on the server side? On Aug 19, 1:39 am, Karl wrote: > I'm new to using JQuery and I've been searching everywhere to be able > to post XML to a WebMethod on an aspx page in a site.  I'm sure it can > be done but I just have no idea how. > > An