Fill A DataGrid From An XML File
By Brad Kingsley
October 3, 2001
The code below demonstrates how to populate an ASP.Net DataGrid control with the
contents of an XML file.
<%Page Language="VB" Trace="false"%>
<%@Import Namespace="System.Data"%>
<script language="VB" runat="server">
Sub Page_Load(Src as Object, E as EventArgs)
Dim oDataSet As DataSet = New DataSet
oDataSet.ReadXml("C:\GridTest\authors.xml",XmlReadMode.ReadSchema)
oGrid.DataSource=oDataSet
oGrid.DataBind()
End Sub
</script>
<html>
<head>
<title>Fill A DataGrid From An XML File</title>
</head>
<body>
<asp:DataGrid id="oGrid" runat="server"
</body>
</html>
<p/>
</html>
~Brad
Brad Kingsley is founder and president
of ORCS Web, Inc.
- a company that provides managed hosting solutions for clients who develop and deploy their applications on Microsoft Windows platforms. Services include shared hosting, dedicated hosting, and webfarm hosting, with specialty in .Net, SQL Server, and architecting highly scalable solutions.