Asp.net, vb.net, C#.net Resources

Welcome to Asp.net, vb.net, C#.net Resources Sign in | Join | Help
in Search

Browse by Tags

All Tags » XML » c#   (RSS)
  • Navigating XML information items using ASP.NET 2.0 and C#

    This tutorial will show you how to navigate XML information items in ASP.NET 2.0 using C#. First, import the namespace of System.XML and System.XML.XPath The System.Xml.XPath namespace contains the classes that define a cursor model for navigating and editing XML information items as instances of the XPath 2.0 Data Model. In this sample, we will ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • Re: How to read data from the XML file using FileStream?

    How to read data from an XML file and display it in a DataGrid? VB.NET dim ds as new DataSet() ds.ReadXml (Server.MapPath ("products.xml")) DataGrid1.DataSource =ds DataGrid1.DataBind() C# DataSet ds= new DataSet (); ds.ReadXml (Server.MapPath ("products.xml")); DataGrid1.DataSource =ds; DataGrid1.DataBind(); How ...
    Posted to XML and the .NET Framework (Forum) by admin on September 13, 2006
Powered by Community Server, by Telligent Systems