how to fatch value from <bean:write> into String
i have a logic iterate and is ArrayList(accountGrid)
i want to take the value of
<bean:write name="grid" property="bank_account_Acc_No"/>
in String.
Something like this
<logic:iterate id="grid" name="bank_accountGrid" scope="request">
String valuebean=<bean:write name="grid" property="bank_account_Acc_No"/>
</logic:iterate>
this is how i am printing my data
<logic:iterate id="grid" name="bank_accountGrid" scope="request">
<bean:write name="grid" property="bank_account_Acc_No"/>
-
</logic:iterate>

