retrieve value from dropdownlist and show it to another page in jsp

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nishant
    New Member
    • Sep 2012
    • 2

    retrieve value from dropdownlist and show it to another page in jsp

    I have two pages one is index.jsp and another is first.jsp. I have drop down list in index.jsp page.I want that if i choose any value from dropdown list that value should go to the next page that is first.jsp. the code i am using is mention below.

    Code:
    <h4>Plant: <select name="plants" onchange="location.href=f1.plants.options[selectedIndex].value;">
    
    <option>Select</option>
    <option value="First.jsp"><b>Aligarh BP</option></b>
    <option value="First.jsp">Aligarhbp</option>
    <option value="First.jsp">Aligarhbp</option>
    
            </select>
Working...