Use Delegate and Events in Asp.Net

I’m explaining Delegates and Event with the use of UserControl and Form in the Asp.Net Webpage.
Steps for usercontrol
====================

1. First create one user control (Like ucTestDelegate)
2. Declare one Delegate (dont declare it in with in function but declare it in class)
3. Declare one event that uses this delegate (Declare it in class)
4. signature of event and [...]