Question Focus on Dynamically Created Control

mahakaalrudra

New member
Joined
May 24, 2008
Messages
2
Programming Experience
1-3
Dear Forum Members,
I've a problem that I can't detect the focus currently on which control ? the control are dynamically created. If user click on this control there should be some processing on the click or change event. but I can't get which of the control is current focusing. How can I solve this problem please some one help me to out this.

Thanks & Regards,
Ravi P. Gupta
 
The "sender" parameter of the event identifies the control that raised the event.
 
Use the AddHandler statement to dynamically add event handlers.
 
Back
Top