I Have a link button when clicked i want to preform an operation inside the OnPreRender method...

so how would i know if that linkbutton was clicked

say my linkbutton's name is : lnkbtn1

Thanks in advance.

Baher.

link|improve this question

57% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Your button's Clicked event would already have been called by the time you get to PreRender, so maybe use the Click event to set a private boolean property on your control to indicate whether the button was clicked, which you can then check later in PreRender.

link|improve this answer
Thanks i just got confused between OnPreRender and OnPreInit – Baharanji Aug 25 '10 at 10:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.