XML ASP.Net

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Xml" %>

    void Page_Load(object sender, EventArgs e)
    {
        string xmlPath = MapPath("Authors.xml");
        XmlDocument booksDoc = new XmlDocument();
        Response.ContentType = "text/xml";
        try
        {
            booksDoc.PreserveWhitespace = true;
            booksDoc.Load(xmlPath);
            //Write the XML onto the browser
            Response.Write(booksDoc.InnerXml);
        }
        catch (XmlException xmlEx)
        {
            Response.Write("XmlException: " + xmlEx.Message);
        }
        catch (Exception ex)
        {
            Response.Write("Exception: " + ex.Message);
        }        
    }   

<%--


  
    000-00-0001
    Nancy
    Lee
    999 999-9999
    
9999 York St.

    Regina
    LA
    99999
    true
  

  
    000-00-0002
    First
    Last
    415 986-7020
    
No Name St.

    Vancouver
    BC
    88888
    true
  
 

--%>