in my project there is no XML files
in my database have two tables getting values from tables
now i want create a XML file and auto naming and store the values from database to store new xml file . is it possible for windows c sharp
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hirendra SisodiyaPosted Apr 14, 2010, 4:40 AM
Do you want to create xml file from your database tables???
if yes than you can create a datatable and use WriteXml function like:
datatable1.WriteXml(ExportFileName);
thanks
Please mark as answere if it helps