datagrid in a tabstrip control problem

drdexter33

Newcomer
Joined
Sep 26, 2004
Messages
1
Hi there.

I have a tabstrip control and need to place a datagrid control in one of the pages as shown below:



<ie:tabstrip id="jobSummary" runat="server" >
<ie:Tab Text="Job Summary" runat=server />
</ie:tabstrip>
<ie:multipage id="jobSummaryTabs" runat="server" >

<ie:Pageview id="tabShifts" runat=server>
<asp:dataGrid id="dgShifts" runat="server" Visible="true" Width="400" ShowHeader="true" ShowFooter="false" Enabled="true" EnableViewState="true">
</asp:dataGrid>
</ie:Pageview>
</ie:multipage>




Problem is, the datagrid doesn't render.

Anyone know why this is true?

Thanks

Doug Dexter
 
Back
Top