Hello all. I am trying to figure out how to store a group of parameters in
session so that I can store multiple groups and print this out into an html
table. What I can't figure out is how to store a group of parameters in the
session object. My group of parameters consists of this: Item, Description,
Price, Quantity, and Total. Now I need to store those five parameters with
difference values for each item that I have. So my html table would look
something like this.

Item            Description             Price           Quantity                Total
8923            some description        $80.29          4                       $321.16
2983            second product desc     $20.50          2                       $41.00

I have been thinking about holding this information in an object and then
holding the object in session, but I can't figure out how to a uniqe object
for each product. I also realize that a database would be the best way to do
this, but I can't use a database for this, so session seemed to be the next
best thing.

Also, is there anyway to create multiple uniqe sessions? I seem to remember
that there is a way to do this using ASP/VBScript, but I can't seem to do
this same thing in Java.

thanks,

Aaron

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to