Hi All,I have created one dynamic button under 3 control, i need to assign one public function which is created in Module.Here is the scenario.Public sub myFun() msgbox(1223333)end subMy button is under following controls.1- <div id="formbody" runat="server"></div> ' only this ID is manual created. 2- <cc1:TabContainer ID= Dynamic ID > ' This is dynamic generated by loop 3- <cc1:TabPanel ID= Dynamic ID > ' This is dynamic generated by loop 4- Here is my Button control. <asp:Button id="Button123" ................................. OnCommand="myFun"If i create the button on same .aspx page it work normal, But i am not sure how to call this function from the button which is created under many controls.A small peace of code really will help me avoid me to write many code in different way....Thank You<asp:Button id="Button123"
Text="SubMit"
CommandName="submit"
OnCommand="myFun"
runat="server
View Complete Post