Load a DataGrid Contol with XML Data using ADO.NET
Load a DataGrid Contol with XML Data using ADO.NET
Rate Load a DataGrid Contol with XML Data using ADO.NET
(1(1 Vote))
.ADO
Protected Sub btnImportXML_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim objXMLDataSet As New DataSet("XMLDataSet")
Dim objXMLDOM As New System.Xml.XmlDocument()
objxmldom.Load(txtPath.Text)
objXMLDataSet.ReadXml(txtPath.Text)
DataGrid.DataSource = objXMLDataSet
End Sub
Load a DataGrid Contol with XML Data using ADO.NET Comments
No comments yet — be the first to post one!
Post a Comment