How to save an XML Doc in remote server

T

T.Jeywin Lizy

How to save an XML Doc in remote server
like we save xml file in local system as doc.Save("data.xml");


where doc is -----> XmlDocument doc = new XmlDocument();
Please let me know what should be the parameter of Save() method to store in
FTP.


Thanks
Lizy
 
M

Mr. Arnold

T.Jeywin Lizy said:
How to save an XML Doc in remote server
like we save xml file in local system as doc.Save("data.xml");


where doc is -----> XmlDocument doc = new XmlDocument();
Please let me know what should be the parameter of Save() method to store
in
FTP.

If the FTP server you're talking about is local to you, then you should be
able to give the UNC/directory name/data.xml in the doc.Save(UNC/directory
name/data.xml ). I'll assume you know what UNC means.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top