Hi, In a JSP, I am iterating over a collection and want to set a hidden field with the value of one of the properties of the objects contained in hashtable. I am using the following code for that. Can somebody suggest what is going wrong.
<logic:iterate id="file" name="deviceFileList" indexId="id">
<bean:write name="file" property="fileActiveStatus" />
<html:hidden property="hiddenFile" indexed="true" name="file"
value="fileActiveStatus"/>
regards,
Pankaj

