XML ASP.Net

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Xml" %>
<%@ Import Namespace="System.Xml.Xsl" %>
<%@ Import Namespace="System.Xml.XPath" %>
                
    void Page_Load(object sender, System.EventArgs e)
  {
        string xmlPath = MapPath("BooksWithStyle.xml");
        string xslPath = MapPath("Books.xsl");      
      XPathDocument xpathDoc = new XPathDocument(xmlPath);      
        XslCompiledTransform transform = new XslCompiledTransform();                    
        //Load the XSL stylsheet into the XslCompiledTransform object
        transform.Load(xslPath);                
        transform.Transform(xpathDoc, null, Response.Output);            
    }        

<%-- BooksWithStyle.xml


  
    title 1
    
      A
      B
    

    99.99
  
  
    title 2
    
      B
      C
    

    11.99
  

--%>
<%-- Books.xsl


  
  
    
      XSL Transformation
      
        

My Book Collection


        
          
            Title
            Price
          
          
                         
              
                
              
              
                
              
            
          
        
      
    
  

--%>