XML ASP.Net Tutorial

<%@ Import Namespace="System.Xml" %>

   sub Page_Load(Sender as Object, e as EventArgs)
      dim reader as XMLTextReader
      dim i as integer
      dim curPrice as Decimal
      
      try
         reader = new XMLTextReader(Server.MapPath("Data.xml"))
         
         While reader.Read()
            Select Case reader.NodeType
               Case XMLNodeType.Element
                  if reader.HasAttributes then
                     for i = 0 to reader.AttributeCount - 1
                        Response.Write(reader.GetAttribute(i) & " ")
                     next
                     Response.Write("
")
                  end if
               Case XMLNodeType.Text
                  Response.Write(reader.Value & "
")
            End Select
         End While
      catch ex as Exception
         Response.Write("Error accessing XML file")
      finally
         reader.close
      end try
   
   end sub





File: Data.xml


  
    asdf
    
      asdf
      asdf
    

    asdf
  
  
    asdf
    
      asdf
      asdf
    

    asdf
  
  
    asdf
    
      asdf
      asdf
    

    asdf