Posted on: 3/1/2015 9:35:08 AM | Views : 596

Hi,
I'm developing a messaging management application for my users (such as inbox, sent items and deleted items).
Each displayed message contains another 3 Image Buttons for reply, archive and delete.
the events for these image buttons are added on server side as follow:
reply.Click += new ImageClickEventHandler(onReplyImageClick);
Once the page is loading with the inbox messages (from page_load), the events are firing, but when i press another link (sent items or deleted items), the events are no firing and just reload the page (because they are clickable).
What can i do to make the event handlers work no matter what are the displayed messages at the moments (inbox, sent items or deleted items)?
Any assistance will be appreciated.
Thanks.

Go to the complete details ...