radio button list - click event

  • Thread starter Thread starter Mr. X.
  • Start date Start date
M

Mr. X.

How can I capture a radio button list click event (code behind) ?

<asp:RadioButtonList ID="radList" runat="server"

RepeatDirection="Horizontal">

....

</asp:RadioButtonList>

************



What I did is (on code behind) :

radList_OnSelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
Handles radList.SelectedIndexChanged

.....

, but it doesn't work.



Thanks :)
 
Hi,

Events associated with controls not causing postback does not get fired,
until something happens that cause a postback. By default the
RadioButtonList does not cause postback so the selecteditemchanged event is
only raised when the page is posted back for some reason (button click for
example). If You would like to "see" the event immediately set the
radiobuttonlists AutoPostBack property to true.

Hope You find this useful.
-Zsolt
 
Thanks.

I would like to learn more about postback issue,
and how asp.net is related to that ?

Thanks :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top