AspAlliance.com LogoASPAlliance: Articles, reviews, and samples for .NET Developers
URL:
http://aspalliance.com/articleViewer.aspx?aId=504&pId=-1
CodeSnip: Fill A DataGrid From An XML File
page
by Web Team at ORCS Web
Feedback
Average Rating: This article has not yet been rated.
Views (Total / Last 10 Days): 10528/ 10

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>

by Brad Kingsley is Founder and President of ORCS Web, Inc. - a company that provides managed hosting services for clients who develop and deploy their applications on Microsoft Windows platforms.


Product Spotlight
Product Spotlight 

©Copyright 1998-2024 ASPAlliance.com  |  Page Processed at 2024-04-19 3:17:09 PM  AspAlliance Recent Articles RSS Feed
About ASPAlliance | Newsgroups | Advertise | Authors | Email Lists | Feedback | Link To Us | Privacy | Search