I am having a dilemma on how to handle two forms on one
jsp page. The first form is basically a header with a drop down list in it. I have a form bean and an action mapping for that. The second form is a display of users from the database again with its own form bean and action mapping. Ultimately if the user changes the information on the drop down list the report under it will change as well, but I am not sure how I can get the data from the drop down list into the second form.
If I try to retrieve anything in the second action form that has to do with the first then I get a null pointer exception.
Do I need to set something up in my struts-config.xml that allows them to talk to each other or do I need to do something totally different?
Melissa