Hi,
    I have an application that has let's say 4 jsp's, 3 of them are
connected to JavaBeans and let's say they represent a customer, items
and an order.
The 4th JSP is acting as a controller. The flow is the following :

start.html --->controller--->customer.jsp--->controller--->order etc.

Basically i have a link on my 1st page (start.html)

http://localhost:8000/controller.jsp?destination=customer.jsp?clientid=144

when clicked on it passes the destination and the client id to the
controller
the controller loads the necessary beans adn stores them in the session.

It then forwards to the other jsp for the presentation.  There is one
event in the system... save button. The rest of the navidation  is done
with tabs.
So for most of my form method = post the action the action is "".

My problem is with checkboxes on some of my screens. if I have no post
how do I intercept a selection of the checkbox and set the attribute on
my bean so that it has the proper info.  I could do it in the controller

but I will have many checkbox in the future. Also since the name/value
pair isn't sent it the checkbox is empty is puzzling me as well.

Code snippets for jsp/bean would be appreciated.  I am having a hard
time with the checkboxes.

Thanks

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
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