I have a user control inside a repeater and a custom event is raised by that user control but I do not know how to handle that event.
Normally I would do something like this:
Protected Sub MyFancyEventRasied(ByVal sender As Object, ByVal e As EventArgs) Handles MyFancyUserControl.MyFancyEvent
'do something fancy
End Sub
But I can’t do this because the user control is inside of the repeaters ItemTemplate. How can you handle the event of a control inside of an ItemTemplate?
and