Looks like you want something like this


<logic:iterate id="result" name="results">
        <bean:write name="result" property="planStartTime" />
</logic:iterate>

or in jstl

<c:forEach var="result" items="${results}">
        <c:out value="${result.planStartTime}" />
</c:forEach>


On 7 Jan 2004, at 14:22, Kamal Gupta wrote:


Hi,

I am trying to store a value of a list into a variable on a jsp page.

the clode below writes the information pf planstarttime on the jsp page.
<bean:write name="results" property ="planStartTime" />


if i want to store the value of plan start time into an int what should i do

can anyone help

Regards

Kamal


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to