How to Parse an XML string or File#
using System.Xml;
try
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("xml");
doc.Save(@"c:\counterparty.xml");
}
catch (Exception ex) {
MessageBox.Show(ex.Message);
}
Using C#
Add new attachment
Only authorized users are allowed to upload new attachments.
«
This page (revision-1) was last changed on 13-Feb-2008 14:45 by UnknownAuthor