tags:

views:

140

answers:

2
...
<input type="radio" name="radio" id="radio1" />
<input type="radio" name="radio" id="radio2" />
..

Supposed it's submited with method="POST".

A: 

you can check the value of the item in the response tag - give each of your radio buttons in the group gets a value.

Then use the name of your radio button to access the request object for that name. The value indicates which is checked.

jkelley
+1  A: 

You should add a value to your input radio.

<input type="radio" value="somevalue" name="something">
alex