I want to create xml file and write data from database in it. file will be created dynamically.
I am storing data in DataTable. Query is select documentId,documentContent from tblDocument where status = 'F'
where documentContent is xml data.
I have tried following code but its not working,
foreach(DataRow dr in dt.Rows) { string filepath = ConfigurationManager.Appsetings[Constants.FailedDocuments]; string filename = "message_"+ dr["documentId"].ToString(); string content = dr["documentContent"].ToString(); XDocument xdoc = new XDocument(); xdoc.parse(content); xdoc.Load(filepath+filename); } I am new to this and don't know how to and where to place this code correctly as i want to write content
xdoc.Saveinstead ofLoad?