Hello,
given following html
<input id="IBE1_IBE_NurFlug1_RadioButtonList1_0"
name="IBE1$IBE_NurFlug1$RadioButtonList1" value="Blue" type="radio">
<label for="IBE1_IBE_NurFlug1_RadioButtonList1_0">Blue</label>
<input id="IBE1_IBE_NurFlug1_RadioButtonList1_1"
name="IBE1$IBE_NurFlug1$RadioButtonList1" value="Green" checked="checked"
type="radio">
<label for="IBE1_IBE_NurFlug1_RadioButtonList1_1">Green</label>
how can I perform actions like
If radiobutton blue is checked do ... If radiobutton green is checked do...
thanks in advance...