I'm going to try it out thanks for your time...
Ornelas.

-----Original Message-----
From: Melli, Patrick [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 5:29 PM
To: [EMAIL PROTECTED]
Subject: Re: session objects with arrays


Yes,

        // create the JSPTableModel
        JSPTableModel model = new JSPTableModel();

        // create a new TableModel as the source
        TableModel tableModel = createTableModel();
        model.setModel(tableModel);

        // add the JSPTableModel into the session so that it
        // can be found by the JSP page
        HttpSession session = req.getSession();
        session.putValue("model", model);


where
public class JSPTableModel {
        // the data model
        protected TableModel model;


-----Original Message-----
From: Ornelas, Gabriel (CAP, CORP)
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 5:05 PM
To: [EMAIL PROTECTED]
Subject: session objects with arrays


Hi everyone,

        Thanks for your time,
        I'm need to store some information into a a session object does
anyone know if I can store this information
        as an bidemensional array, such as a matrix ?

Thnaks... Ornelas.

===========================================================================
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

===========================================================================
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

===========================================================================
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