Hello, can't seem to figure this out. I have a text string which represents an XML document and I just want to write it to an XML file. I know I can do it by writing it as a text file , but I am trying to use XmlDocument.Save(); this code, only saves the very last line of the XMLText.
String XMLText = RadTree1.GetXml();
XmlDocument xml = new XmlDocument();
xml.Load = XMLText;
xml.Save(Request.PhysicalApplicationPath
+@"\ProjectTree.xml");
Thanks
=
