-
Radio Button
Hy,
I am facing a probelm in my web application with the Radio Button.
I a not beiing able to catch the on "click" event.
This is event is available in a windows application, but is not in a web one. Any one has any idea of what could replace the "click" event.
N.B: The "checkChanged" event didn't do what I want.
Thanks for your help.
-
(First, be sure your radio button is a web form and not an HTML component.)
Change the AutoPostBack property of the radio button to True, and the command CheckedChanged() will execute as soon as the user changes the control.
-
Thanks
Thanks a lot, it was very helpfull.
In fact it solved my problem.