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







