Hello. I have a web page and i want user to be able to select multiple options. The problem is that when i write
<select name="aha">
<option value="hhh">HHH</option>
<option value="kkk">KKK</option>
<option value="ppp">PPP</option>
There is no problem in my JSP page.
But later when i try to write
<select multiple name="aha">
<option value="hhh">HHH</option>
<option value="kkk">KKK</option>
<option value="ppp">PPP</option>
I can't seem to see the list properly. I have 28 values in my list.
What might be my problem?