Passing parameters to another page?
Hello,
I have a .jsp form with a drop-down box like this:
<select name=newlist>
<option value=1>Title 1
<option value=2>Title 2
<option value=3>Title 3
<option value=4>Title 4
</select>
When I submit the form, I retrieve the value like this:
int jlistvalue = Integer.parseInt(request.getParameter("newlist"));
Is there a way to also retrieve the title?
Your help is greatly appreciated.
Logan

