Click here to Skip to main content
15,884,472 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi,

I am successfully loaded user control dynamically on AJAX tab container
here is the code

1)
VB
Dim UserControl_3 As ASP.inpatienteditbill_ascx = New ASP.inpatienteditbill_ascx


2)
VB
UserControl_1.LoadControl("~/InpatientEditBill.ascx")
  TabPanel3.Controls.Add(UserControl_3)


Question is,

I have lots of controls with in user controller, such as grid view, drop downs, buttons...

when I click the button in user control its disappear, and when click on the tab its get loaded, but the form load event doesn't get invoke.
plz help me.
Posted
v2

1 solution

hi,
might be it is problem of postback..check out that..
when u click on button within user control then page is postback then usercontrol disappears but when u click on tab then it load usercontrol again...
 
Share this answer
 
Comments
sawshalin 24-Sep-12 4:22am    
post backs are working fine,when i bind them to main page source,
<contenttemplate>
uc3:WebUserControl3 ID="WebUserControl3" runat="server"

what i need is load user controls dynamically(already done),but form load event of user control is not firing and when click the button on user control its get lost

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900