XML transformation: transform XML file to HTML file : XML Transform « XML « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » XML » XML TransformScreenshots 
XML transformation: transform XML file to HTML file
  
using System;
using System.Xml;           
using System.Xml.Xsl;       
using System.Xml.XPath;     
using System.IO;            

  public class XSLDemo
  {
    [STAThread]
    static void Main(string[] args)
    {
      XslTransform xslt = new XslTransform();
      xslt.Load("XSLTemplate.xsl");
      XPathDocument xDoc = new XPathDocument("Books.xml");
      XmlTextWriter writer = new XmlTextWriter("Books.html"null);
      xslt.Transform(xDoc, null, writer, new XmlUrlResolver());
      writer.Close();
      StreamReader stream = new StreamReader("Books.html");
      Console.Write(stream.ReadToEnd());
    }
  }
/*
<books>
  <book category="A">
    <title>title</title>
    <author>Tom</author>
    <price>19.95</price>
  </book>
  <book category="B">
    <title>title 2</title>
    <author>Jack</author>
    <price>9.95</price>
  </book>
</books>
*/

/*
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match = "/" >

<html>
<head><title>A list of books</title></head>
<style>
.headerClass { background-color=#ffeedd; }
</style>
<body>
<B>List of books</B>
<table border="1">
<tr>
  <td class="headerClass">Title</td>
  <td class="headerClass">Author</td>
  <td class="headerClass">Price</td>
</tr>
<xsl:for-each select="//books/book">
<tr>
  <td><xsl:value-of select="title"/></td>
  <td><xsl:value-of select="author"/></td>
  <td><xsl:value-of select="price"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>

</xsl:template>
</xsl:stylesheet>

*/

           
         
    
  
Related examples in the same category
1.Use XslCompiledTransform
2.Perform an XSL Transform
3.Read command line input and do the xml xsl translation
4.Illustrates the XslTransform classIllustrates the XslTransform class
5.Perform an XSL Transformation using XML and XSL content and with some XSLT arguments
6.Xslt Transformation Helper
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.