| Author |
cookie name using EL
|
sangeeta kapoor
Ranch Hand
Joined: Jun 15, 2004
Posts: 70
|
|
${cookie.userName.value} can be used to get the value of userName cookie without using scripting. But how can I get the cookie names using EL. Something similar to following in scripting <% ... cookies[i].getName(); %>
|
 |
Nitish Bahadur
Ranch Hand
Joined: Aug 25, 2003
Posts: 118
|
|
<c:forEach var="aCookie" items="${cookie}"> aCookie.key = ${aCookie.key} <br/> </c:forEach>
|
 |
sundar katluri
Greenhorn
Joined: Dec 14, 2004
Posts: 25
|
|
I just tried this it worked
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: cookie name using EL
|
|
|