Try using a Bean instead of a session.setattribute.
<jsp:useBean id="myCart" class="java.util.Vector" scope="session" />
As long as you refer to it by the same name and same scope you will have access to it in every page you need it.
You can then just walk through the items in the Vector
Main Topics
Browse All Topics





by: appl3Posted on 2003-04-16 at 10:49:18ID: 8342771
HELP.