Passing drop down value through link in JSP

kartik

I am not able to pass the drop down value through link in JSP page .

Here is code

  <select name="dropdown" id="month">
    <option value="JAN">JAN</option>
    <option value="FEB">FEB</option>
    <option value="MAR">MAR</option>
    <option value="APR">APR</option>
    <option value="MAY">MAY</option>
    <option value="JUN">JUN</option>
    <option value="JUL">JULY</option>
    <option value="AUG">AUG</option>
    <option value="SEP">SEP</option>
    <option value="OCT">OCT</option>
    <option value="NOV">NOV</option>
    <option value="DEC">DEC</option>
 </select> 



<a href="<%=application.getContextPath() %>/viewtrans?requestType=viewTrans&custId=<%=custId%>">View</a>

Now how should I pass the dropdown value through the link?

Santhosh

its same as you done for others if it is a string,

<a href="<%=application.getContextPath() %>/viewtrans?requestType=viewTrans&custId=<%=custId%>&optionVal=<%=dropdown%>">View</a>

If you need to send multiple values , you have to pass it through the array

Hope this helps!!

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related