Link to home
Start Free TrialLog in
Avatar of chaitu chaitu
chaitu chaituFlag for India

asked on

hidden parameter in xsl

in jsp i am using hidden parameters

<input type="hidden" name="houseConsigneeName" value='<%= houseDocuments.consigneeName!=null?houseDocuments.consigneeName:""%>'>

can i write like this in xsl


      <input type="hidden" name="houseConsigneeName" value="{<xsl:value-of select='CGNAME'/>}">
Avatar of YZlat
YZlat
Flag of United States of America image

try

<input type="hidden" value="{CGNAME}"></input>
ASKER CERTIFIED SOLUTION
Avatar of YZlat
YZlat
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
why B?