Hello all, I would like to insert my DataSet values into an XMLPlaceholder.
The code below takes the DataSet(ds) values and saves them into an XML
data
file.
Can anyone please help me change the code below so that instead of saving
the ds into an XML file it saves it into an XMLPlaceholder.
public void SaveData()
{
//save the XML data to a file
ds.WriteXml(HttpContext.Current.Server.MapPath(XmlFile));
}
Thank-you all in advance