tableless design + asp.net master pages

  • Thread starter Thread starter parez
  • Start date Start date
Thanks..
But i was looking for  a way to layout the master page using css.I
mite be be missing something reallly small..

What is different between ASP.NET Master Page and a normal page in
terms of final rendering? The keyword here is "using css", it has
nothing to do with ASP.NET...

<BODY>
<DIV id="header"> ... </DIV>
<DIV id="sidebar"> ... </DIV>
<DIV id="main">
<asp:ContentPlaceHolder ID="MainPane" runat="server">
</asp:ContentPlaceHolder></DIV>
<DIV id="footer"> ... </DIV>
</BODY>
 
What is different between ASP.NET Master Page and a normal page in
terms of final rendering? The keyword here is "using css", it has
nothing to do with ASP.NET...

<BODY>
    <DIV id="header"> ...  </DIV>
    <DIV id="sidebar"> ...  </DIV>
    <DIV id="main">
                <asp:ContentPlaceHolder ID="MainPane" runat="server">
                </asp:ContentPlaceHolder></DIV>
    <DIV id="footer"> ...  </DIV>
  </BODY>

I wasnt thinking right.. Thanks.. that answers my qeustion...
 
Back
Top