Home » JSTL x:transform Tag

JSTL x:transform Tag

by Online Tutorials Library

JSTL XML <x:transform> Tag

The <x:transform> tag is used in a XML document for providing the XSL (Extensible Stylesheet Language) transformation. It is used for transforming xml data based on XSLT script.

The syntax used for including the <x:transform> tag is:

Let’s see the simple example to understand the xml <x:transform> tag:

Let us put the following program in transfer.xsl file:

Now put the following program in transfer.xml, keeping in the same directory:

Now put the following program in index.jsp, keeping in the same directory:

Output:

JSTL XML Tags6

You may also like