calling servlet based on the drop down menu selection
hi all,
I have a jsp page where in i have a selection drop down menu box....
based on the selection of the drop down menu i should call the related servlet.
-
--
select the servlet to be called
<select name="hello">
<option value="hello world"> Hello World
<option value="hello java">Hello Java
</select>
--
<input type=submit value="submit" >
based on the above selection i need to call the relevant servlet
HelloWorld.java --> servlet to be called upon the selection of Helloworld
HelloJava.java --> servlet to be called upon the selection of Hello java....

