This is my html code:
<select size="1" name="qualification">
<option value="M.Tech">M.Tech</option>
<option value="M.C.A.">M.C.A.</option>
<option value="B.Tech" selected>B.Tech</option>
</select>
And this is my
jsp code:
<%= request.getParameter("qualification")%>
In the jsp, "null" is being displayed ...
But all the text type fields of the html are properly retrieved ....
Any suggestions...?
P.S. i have tried using tags(along with a bean) to do this too.....nothing works