Hi,
the page 448 describes how to use c:remove tag,
it states that the scope if not mentioned in the <c:remove var="blah"/>
resolves to page scope.
I have a program as follows
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:set var="user" scope="session" value="cowboy"/>
<c:set var="dog" value="tommy"/>
${dog}
${user}
<c:remove var="user"/>// the c:remove tag removes the user variable created under session scope even without me mentioning the scope..
<a href="testset.jsp">clcik to
test</a>