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
Webtab Control twice postback
posted

Hi - I am using Infragistics webtab (v 10.2) to move between two aspx pages and here is code snippet.

 

 

 

 

 

 

 

 

 

 

<

 

 

ig:WebTab ID="WebTab1" runat="server" Height="200px" Width="300px" EnableValidation="true" EnableViewState="false">

 

 

 

<Tabs><ig:ContentTabItem runat="server" Text="Tab 1" ContentUrl="Page1.aspx">

 

 

 

</ig:ContentTabItem>

 

 

 

<ig:ContentTabItem runat="server" Text="Tab 2" ContentUrl="Page2.aspx">

 

 

 

</ig:ContentTabItem></Tabs>

<PostBackOptions EnableLoadOnDemandUrl="true" EnableLoadOnDemand="true" EnableReloadingUnselectedTab="true" EnableAjax ="true"/>

 

 

 

<AutoPostBackFlags SelectedIndexChanged ="On"/>

 

 

 

</ig:WebTab>

Here is the issue I am facing -

When I move from Tab1 (Page1.aspx) to Tab2 (Page2.aspx) Page1.aspx is loaded as expected, but Page2.aspx is loaded twice.

Am I missing any settings?

Appreciated quick response.

Parents Reply Children