Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
WebDropdown list autopost back issues in WebTab
posted

I have two tab and each tab I taken a place holder. So on tab index change property I am loading user control in respective place holder.

<ig:WebTab runat="server" ID="wbTab" Width="100%" Height="600px"
OnSelectedIndexChanged="wbTab_SelectedIndexChanged">
<AutoPostBackFlags SelectedIndexChanged="On" />
<Tabs>
<ig:ContentTabItem runat="server" Text="Client" TabSize="115px">
<Template>
<asp:PlaceHolder runat="server" ID="plClient" />
</Template>
</ig:ContentTabItem>
<ig:ContentTabItem runat="server" Text="Notes" TabSize="115px">
<Template>
<asp:PlaceHolder runat="server" ID="plNotes" />
</Template>
</ig:ContentTabItem>
.....................

Second User control contains a dropdown list and it going to autopostback. But on postback, tab is getting blank. It seems removing the current user control form the tab.

Please advise.