jstl transform question

2003-12-08 Thread
when i write the code below: x:transform xml=${xml} xslt=${xslt} x:param name=gg value=0/ /x:transform my question is what the param useage here,how can i get the param in xsl file? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam

Re: jstl transform question

2003-12-08 Thread Martin van Dijken
Never tried that, but if I'm not mistaken XSL has a mechanism built-in to retrieve parameters passed from anywhere when the stylesheet is loaded. Check out the http://www.w3schools.com xsl tutorial and reference for more info. Martin wrote: when i write the code below: x:transform

Re: jstl transform question

2003-12-08 Thread matsuhashi
when i write the code below: x:transform xml=${xml} xslt=${xslt} x:param name=gg value=0/ /x:transform my question is what the param useage here,how can i get the param in xsl file? A XSLT which accepts a param named gg and displays the param's value would look something like this:

Re: jstl transform question

2003-12-08 Thread
--- [EMAIL PROTECTED] when i write the code below: x:transform xml=${xml} xslt=${xslt} x:param name=gg value=0/ /x:transform my question is what the param useage here,how can i get the param in xsl file? A XSLT which accepts a param named gg and displays the param's value would