kentico_michal
-
10/24/2011 12:44:55 AM
RE:My Messages webpart won't delete
Hello,
It seems to be some kind of different page lige cycle based issue and because of that click events are not fired.
So, I would recommend you to use different approach. You could always check whether the Request.Form collection contains UniqueID information of a clicked button and take action acordingly, for example:
if (!String.IsNullOrEmpty(Request.Form[this.custombtn.UniqueID])) { // code ... } ... }
Best regards, Michal Legen
|