Remove Session Attribute In JSTL
Posted by tech on
June 15, 2009
|
|
Removing session attributes using Java code goes like this
1 | request.getSession().removeAttribute("my_var"); |
To do the same thing in JSTL, do this
1 | <c:remove var="my_var" scope="session"/> |

/rating_on.png)








