I would frame my query in a better way
I am using Javabeans say for example,
<jsp:useBean id="formHandler" class="foo.FormBean" scope="request">
<jsp:setProperty name="formHandler" property="*"/>
</jsp:useBean>
Now i need to set the getter/setter methods,
Here I access a textbox like this
public
String getFirstName() {
return firstName;
}
//The Setter method
public void setFirstName(String fname) {
firstName =fname;
}
This particular piece of Info I retain to use in later pages,
Similarly How would i go about ListBoxes which has fixed values and once selected by user is retained/Used in later pages.
Warm Regards to all