Sponsered Links
Categories
Sponsered Links

Introduction to XSLT

 

Pre Knowledge Required

  • HTML
  • XHTML
  • XML
  • XPath

About XSLT

XSLT stands for XSL Transformations. It is used to transform an XML document into another XML document. XSLT is the most crucial part of XSL. XSLT uses XPath to navigate in XML documents and with the help of XSLT you can add/remove elements and attributes to or from the output file. You can also sort or rearrange the elements, perform tests and make decisions about which elements to display and hide, and a many more things you can do. XSLT is a W3C Recommendation. In the simple word you can say that XSLT transforms an XML source-tree into an XML result-tree. XSLT uses XPath to find information in an XML document. XPath is used to navigate through elements and attributes in XML documents.

Browser Support

Almost All major browser support to XML, XSLT and XPath. For Example:

  • Mozilla Firefox
  • Internet Explorer
  • Google Chrome
  • Opera
  • Apple Safari

Style Sheet Declaration

<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">

 
 
Sponsered Links
Latest Updates
 
All Content of this site is for learning only. We do not warrant the correctness of its content. The risk from using it lies entirely with the user. While using this site, you agree to have read and accepted our terms of use and privacy policy.
Copyright © 2009 JSPSERVLETTUTORIAL.INFO All Right Reserved