hi,
i have a xml file and i would like to read and write data in XML file.
thanks
regards
umesh chand daiya
Recommended Answers
Jump to PostHere is an example of code I use to read an XML file.
void binddata() { DataSet dsName = new DataSet(); dsName.ReadXml("C:/XMLFILEHERE")); foreach (DataColumn da in dsName.Tables[0].Columns) { da.ColumnMapping = MappingType.Attribute; } }
All 2 Replies
dawsonz
0
Light Poster
thomas6188
0
Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of 1.20 million developers, IT pros, digital marketers, and technology enthusiasts learning and sharing knowledge.