I used radio button
<input type="radio" name="kaspomat" value="a10" >
radio button 2
<input type="radio" name="kaspomat" value="a20" >
radio button 3
<input type="submit" value="submit" >
Now I want to reaad my choise from a
servlet ( to read a10) how can I pass these parameters to servlet and read them
I try in this way
String check = request.getParameter("kaspomat");
but it does not work
please someone can help me?