Hey,
I have a page that add Items to RadioButtonList with this code :
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
RD.Read()
RBQ1.Items.Add(RD.GetString(3))
RBQ1.Items.Add(RD.GetString(4))
RBQ1.Items.Add(RD.GetString(5))
RBQ1.Items.Add(RD.GetString(6))
End Sub
When I click in any button in the same page, the entire page reload
and it display 8 items in the RadioButtonList, If I click for the second time I get 12 items in the RBL...
How can I prevent
the page to reload if I click in this button. ?
Thanks.