Hi,
In my web application, i have created one page as a custom control. Inside that control, there are various controls like text box, button , data grid ext.Then i have include that control in the test.aspx page. All the events and other codes are inside the form control only. So that there is no single code in the code behind file (test.aspx.cs).
All the events are bind within the form control and they are triggered properly. But gridiew's child control (like checkbox,dropdown list) events are not triggered properly. Whenever i click's the check box it looks the event driven code in the code behind(test.aspx.cs) file instead of the form control code.
Does anyone know how I could change my code to call the child control code?