Hi,
I am using .Net 3.5 version.I am using RadMenuControl, for every click on menu items it was loading usercontrols in the default.aspx, In Default.aspx i am placing placeholder in that place holder loading ascx controls.I am placing asp update panel for that place holder.
Default.aspx
<asp:Updatepanel >
<asp:PlaceHolder>
control1.ascx
Control2.ascx
Control3.ascx
</asp:PlaceHolder>
</asp:updatePanel>
I am able to load the controls,but the script was always loading first control.when i view the viewsource it was always showing first page(Control1.ascx). If i remove the asp update panel it was working.My requirement is loading controls with partial post back.
I am using .Net 3.5 version.I am using RadMenuControl, for every click on menu items it was loading usercontrols in the default.aspx, In Default.aspx i am placing placeholder in that place holder loading ascx controls.I am placing asp update panel for that place holder.
Default.aspx
<asp:Updatepanel >
<asp:PlaceHolder>
control1.ascx
Control2.ascx
Control3.ascx
</asp:PlaceHolder>
</asp:updatePanel>
I am able to load the controls,but the script was always loading first control.when i view the viewsource it was always showing first page(Control1.ascx). If i remove the asp update panel it was working.My requirement is loading controls with partial post back.