[RESOLVED] radiobutton change event, want to fill ddl with [specific data
Ok i'm back :)
I have some radiobuttons (13 to be exact) all with the same GroupName. next to it i have two dropdownlists (ddl1 and ddl2). When the checked status of these radiobuttons change, i need specific data to fill the ddl (from an array list maybe?).
any suggestions? will it be javascript again? thanks!
Re: radiobutton change event, want to fill ddl with specific data
Set AutoPostBack = True on the radiobuttons, and then you can populate your dropdownlists on the CheckedChanged event of the radiobuttons.
Re: radiobutton change event, want to fill ddl with specific data
Worked perfectly. I didn't realize that property would be so powerful.
Thanks agian!!!