RadioButtonList

  • Thread starter Thread starter Paulo
  • Start date Start date
P

Paulo

Hi, I have a RadioButtonList and I need to do some verifications on a
"OnChange" event on client... because on classic asp/html I just add a
onChange event on input type=radio, etc... How can it be done on
RadioButtonList server component on asp.net 2.0 C# VS 2005 ?
 
Somewhere in event-chain in code-behind (e.g. in PreRender), place
following code

RadioButtonList1.Attributs["onchange"] =
"javascript:ClientSideFunction();";
 
Back
Top