What is XSLT? Explain its relationships with XSL - XML
What is XSLT? Explain its relationships with XSL.XSLT stands for eXtensible Stylesheet Language Transformations. It is a language used to convert XML documents to XHTML or other XML documents. This conversion is done by transforming each XML element into an (X)HTML element.. it uses XPath to find information in a XML document. XSLT is nothing but transforming XSL’s. Xpath defines the parts of the source document that must match one or more predefined templates. Once a match is found, XSLT will transform the match into the result document.
|
What is XSLT stylesheet? - XMLXSL stylesheet is just like a XML document used as a program text or a source. It contains sets of rules and instructions used for transformations.......
Explain the XSLT data model - XMLXSLT shares the same data model of XPATH with some additions. XSLT accepts a XSLT stylesheet as an input and output is another XML, text or another document.......