@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
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
2 matches
Mail list logo