xsl-list
[Top] [All Lists]

Re: [xsl] pass variables to next form on submit from XSL file

2009-02-18 07:31:20
himanshu padmanabhi wrote:

    <input type="hidden" name="argu1" value="<xsl:value-of
select="$argu1" />" >

But getting error here

value="<xsl:value-of select="$argu1" />"

Use an attribute value template
  <input value="{$argu1}" type="hidden" name="argu1"/>

--

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--