I want to pass a XmlDocument to a Xml asp control
something like that :
XmlDocument xmlDoc = new XmlDocument();
myXmlControl.TransformArgumentList.AddParam("xml_document_content",xmlDoc.innerXML);
In order to use the parameter in xslt like a node set.
How can I do that?
After many searches I finally use :