hello,

i have a webform on this webform i create radiobuttons dynamically. i store them in a panel -> panel1 .

now the problem is that i can't find them back to now wich one is checked

this is the code i use

Dim rad As RadioButton
Dim ctl As Control
For Each ctl In Me.Panel1.Controls
If TypeOf ctl Is RadioButton Then
aant += 1

End If

Next

any suggestions?