Find the Control Event Before Page_Load

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i am creating dynamic controls in my application.when i click radio button
first the page load is execute and then radio selected index event is
excuted.is there any way to find radio button click in page_Load.
 
If I understand your question correctly, this is expected behavior.
On a postback the page loads before the radio button click event is
executed. Generally you can change any display items you need to in
the click event or pre render routines.

HTH

Ed Anady
 
Back
Top