Hi Rajiv
 
Tried this but throws error on c : out
 
So i tried the following :
 

<

c:forEach items="#{sessionScope.request.details.entrySet}" var="entry">

<tr><td >${entry.key} </td>

<td>${entry.value} </ td></tr>

</c:forEach>
Nothing is being displayed. Do i have to do any code modification  for "entrySet"
 
Rgds
Shibi
 
On 7/20/06, jsf ster <[EMAIL PROTECTED]> wrote:
Hi Shibi,

try this:


<c:forEach items="${sessionScope.request.details
.entrySet}" var="entry">
<tr>
<td><c:out value="${entry.key}" /></td>
<td><c:out value="${entry.value}" /></ td>
</tr>
</c:forEach>

-Rajiv
 



--
Kind Regards
Shibi Thomas
Cell : 0843052341
Email : [EMAIL PROTECTED]

Rom 12:21  Do not be overcome by evil, but overcome evil with good.

Reply via email to