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.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.