add evnets in asp.net user control
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi How to add evnets in asp.net user control and provide the method to call when event is raised???? thanks in advance
You can define a custom event in the user control as you would with a normal object, also to subcribe the event you can either declare the handler inline in the web page or in code. You can read more about the event in MSDN: Events (C# Programming Guide) [^]