Hi,,
I have a XML:
<Scan>
<EScan>
<Paper>A4</Paper>
<Sides>Both</Sides>
<Count>4</Count>
</EScan>
<EScan>
<Paper>A5</Paper>
<Sides>Both</Sides>
<Count>2</Count>
</EScan>
<EScan>
<Paper>A3</Paper>
<Sides>One</Sides>
<Count>4</Count>
</EScan>
</Scan>
I am using XSL to transform it.
Now i require to display this value on the web page, which i am already doing by using for-each. But i also require to send <paper>, <sides> and <count> JSP function on the same XSL file. I am unable to figure out how to do it. Do have to form array for sending the data. Please help
I have a XML:
<Scan>
<EScan>
<Paper>A4</Paper>
<Sides>Both</Sides>
<Count>4</Count>
</EScan>
<EScan>
<Paper>A5</Paper>
<Sides>Both</Sides>
<Count>2</Count>
</EScan>
<EScan>
<Paper>A3</Paper>
<Sides>One</Sides>
<Count>4</Count>
</EScan>
</Scan>
I am using XSL to transform it.
Now i require to display this value on the web page, which i am already doing by using for-each. But i also require to send <paper>, <sides> and <count> JSP function on the same XSL file. I am unable to figure out how to do it. Do have to form array for sending the data. Please help
Comment