|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
master page problemHello:
I have a master page that contains a table with three rows <table height="100%" width="100%"> <tr><td height="100"><td>header</td></tr> <tr><td height="100%"><asp:contentplaceholder id="ContentPlaceHolder1" runat="server"></asp:contentplaceholder></td></tr> <tr><td height="50">footer</td></tr> </table> When the page is rendered - not as a master page but as a regular page the contentplaceholder SPACE is maximum so that the whole page takes up the browser's space - which is what I want BUT when I use a contentplaceholder in a master page - I just cannot get that spapce to maximize so the result is that the footer is just below the header... Any suggestions ? Thanks T Try this...
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server> <div style="height:100%;"> .... </div> </asp:contentplaceholder> <%= Clinton Gallagher METROmilwaukee (sm) "A Regional Information Service" NET csgallagher AT metromilwaukee.com URL http://metromilwaukee.com/ URL http://clintongallagher.metromilwaukee.com/ Show quote "Support" <RemoveThis_Supp***@mail.oci.state.ga.us> wrote in message news:uwuwB9N$FHA.504@TK2MSFTNGP12.phx.gbl... > Hello: > I have a master page that contains a table with three rows > <table height="100%" width="100%"> > <tr><td height="100"><td>header</td></tr> > <tr><td height="100%"><asp:contentplaceholder id="ContentPlaceHolder1" > runat="server"></asp:contentplaceholder></td></tr> > <tr><td height="50">footer</td></tr> > </table> > > When the page is rendered - not as a master page but as a regular page the > contentplaceholder SPACE is maximum so that the whole page takes up the > browser's space - which is what I want BUT when I use a contentplaceholder > in a master page - I just cannot get that spapce to maximize so the result > is that the footer is just below the header... > Any suggestions ? > Thanks > T > > |
|||||||||||||||||||||||