XSLT

XSLT (eXtensible Stylesheet Language Transformations) is a language for transforming one XML document to another XML document.

The most common destination document is an XHTML document.

XSL Transformations - a language for transforming XML documents into other XML documents.

XSLT uses XPath to find information in an XML document

The root element of a XSLT document is either <xsl:transform> or <xsl:stylesheet>. These are equivalent. Therefore the header of an XSLT document will be:

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

or

<xsl:transform version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

http://www.w3schools.com/xsl/

 
xslt.txt · Last modified: 2009/04/21 09:12 (external edit)
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki