posted 18 years ago
Hi, my question is regarding this <c:remove> tag's functionality:
<c:set var="userStatus" value="Brillant" scope="request"/>
UserStatus is now: ${userStatus}.<br><br>
<c:remove var="userStatus"/>
After remove, userStatus is now: ${userStatus}.
Why is userStatus still removed even with the different scopes, request for the c:set and page for the c:remove? If I use application scope with c:set and c:remove with request scope, then it works properly, why?
Thanks so much,
Carmen