Subject:Hiddem fields. Please Help Author:Arnt Moberg Date:18 May 2005 08:01 PM
Hi
I have an xslt document that works great but I am having difficultis adding a hidden value (needed for a servlet)...
the part of my code where I have trouble is
---------------------------------------------
<xsl:template match="/">><xsl:param name="id" select="@assignmentnr"/>
<form action="/TimeReg/Registrer" method="post">
In the last line I have the param name id that I give the value located in the assignmentnr in the xml file. This works cos prining it on line 5 works.
The problem here is that
<input type="hidden" name="Assignmentid" value="{$id}"/>
gives value="" the empty string?