How we can bind dataset with axml file in vb.net?
I am using the XML control.and i want to bind the Dataset with XML.so please provide the code for binding.
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.
Posted May 21, 2011, 11:58 AM
2) Read your xml and link it with DataSet by using ReadXML method
dim ds1 as New DataSet
ds1.ReadXML("XMLFile.xml1")
grid1.DataSource = ds1
Hope this helps you.