XML ASP.Net Tutorial

<%@ Page Language="VB" %>
<%@ Import Namespace="System.Xml" %>
<%@ Import Namespace="System.Xml.XPath" %>

   sub Page_Load(Sender as object, e as EventArgs)
      Dim objReader as New XmlTextReader(Server.MapPath("Data.xml"))
      Dim objDoc as XPathDocument = new XPathDocument(objReader)
      Dim objNav as XPathNavigator = objDoc.CreateNavigator()
      DisplayNode(objNav)
   end sub
   sub DisplayNode(objNav as XPathNavigator)
      If objNav.HasChildren then
         objNav.MoveToFirstChild()
         Format(objNav)
         DisplayNode(objNav)
         objNav.MoveToParent()
      End If
      While objNav.MoveToNext()
         Format(objNav)
         DisplayNode(objNav)
      end While
   end sub
   Private Sub Format(objNav As XPathNavigator)
      If Not objNav.HasChildren then
         if objNav.NodeType <> XmlNodeType.Text then
            Response.Write("<" & _
               objNav.Name & "
>")
         end if
         Response.Write(" - " & objNav.Value & _
               "
" & vbCrLf)
      Else
         Dim i As Integer
         Response.Write("<" & objNav.Name & _
            "
>" & vbCrLf)
         If objNav.HasAttributes then
            Response.Write("
Attributes of <" & _
               objNav.Name & ">
" & vbCrLf)
         End If
         while objNav.MoveToNextAttribute()
            Response.Write("<" & objNav.Name & "> " & objNav.Value & " ")
         end while
         Response.Write("
" & vbCrLf)
      End If
   end sub