I have a simple usercontrol which raises an event on button click
Public Class UcPaymentCheque Inherits System.Web.UI.UserControl Public Event OnCancelC
You can add the handler in the declaration of the user control in the listview, using OnCancelClick, as follows:
OnCancelClick
Where UcTPPaymentCheque_OnCancelClick is the function you should use to handle the event, in the control that contains the listview.
UcTPPaymentCheque_OnCancelClick