I have a TabContainer with 5 tabs in it. It's very simplistic. Each of the tabs has a set of user controls on them. The TabContainer itself is set for OnDemand="True". Some of the user controls have PreRender overrides defined.
What I'm noticing is that the PreRender is being called for all controls even if their not on the active tab. I know this is a normal page lifecycle for controls on a page, but is there a way to prevent this flow for hidden tabs in this case?
I know in the case of the MultiView control, the hidden controls do not participate in the render lifecycle.
This is a snippet of the code, minus a few other tabs. The general issue is that on PreRender we are loaded data and making some data decisions and on the more data intensive tabs it's slowing things down, which individually they wouldn't be a problem.
<asp:TabContainer ID="tabMain" runat="server" ActiveTabIndex="0" OnDemand="true"
AutoPostBack="false" TabStripPlacement="Top" CssClass="TabMenu" ScrollBars="Auto"
Width="1250" UseVerticalStripPlacement="false" VerticalStripWidth="120px">
<asp:TabPanel ID="tabEmployeeData" runat="server" HeaderText="Data" OnDemandMode="Always"
Enabled="true" ScrollBars="Auto">
<ContentTemplate>
<%= DateTime.Now.ToLongTimeString() %>
<table class="GeneralTable">
<%--Employee Information--%>
<tr>
<td>
<asp:ControlEmployeeData ID="ControlEmployeeData1" runat="server" Width="981px" />
<br />
</td>
</tr>
</table>
</ContentTemplate>
</asp:TabPanel>
<asp:TabPanel ID="tabContactData" runat="server" HeaderText="Contact" OnDemandMode="Always">
<ContentTemplate>
<%= DateTime.Now.ToLongTimeString() %>
<table class="GeneralTable">
<tr>
<td colspan="2">
<asp:ControlEmployeeAddressData ID="ControlEmployeeAddressData1" runat="server" />
<br />
</td>
</tr>
<tr>
<td>
<asp:ControlEmployeePhoneData Width="450px" ID="ControlEmployeePhoneData1" runat="server" />
<br />
</td>
<td>
<asp:ControlEmployeeEmailData Width="450px" ID="ControlEmployeeEmailData1" runat="server" />
<br />
</td>
</tr>
<tr>
<td colspan="2">
<asp:ControlEmployeeEmergencyContactData ID="ControlEmployeeEmergencyContactData1"
runat="server" Width="981px" />
<br />
</td>
</tr>
</table>
</ContentTemplate>
</asp:TabPanel>
</asp:TabContainer>
Page_Eventswhen you don't want it to be executed always. Why do you need to load the controls there? You should trigger that from the page which is the controller. – Tim Schmelter Feb 16 at 0:28OnDemandproperty. So let me read first ;) stephenwalther.com/archive/2011/11/16/… The last time i've used it i've lazy loaded them in this way: mattberseth.com/blog/2007/07/… – Tim Schmelter Feb 16 at 0:39Page_Loadis triggered always even if you setOnDemand=true. Does this apply to theSelectingevent only? Then it would be rather useless. – Tim Schmelter Feb 16 at 0:43