tableless design + asp.net master pages

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • parez

    tableless design + asp.net master pages


    can any one point me to a good link on
    tableless design + asp.net master pages


    TIA
  • Alexey Smirnov

    #2
    Re: tableless design + asp.net master pages

    On Sep 29, 6:24 am, parez <psaw...@gmail. comwrote:
    can any one point me to a good link on
    tableless design + asp.net master pages
    >
    TIA

    Comment

    • parez

      #3
      Re: tableless design + asp.net master pages

      On Sep 30, 2:21 am, Alexey Smirnov <alexey.smir... @gmail.comwrote :
      On Sep 29, 6:24 am, parez <psaw...@gmail. comwrote:
      >
      can any one point me to a good link on
      tableless design + asp.net master pages
      >
      TIA
      >
      http://www.w3.org/2002/03/csslayout-howto
      Thanks..
      But i was looking for a way to layout the master page using css.I
      mite be be missing something reallly small..

      Comment

      • Alexey Smirnov

        #4
        Re: tableless design + asp.net master pages

        On Sep 30, 5:29 pm, parez <psaw...@gmail. comwrote:
        On Sep 30, 2:21 am, Alexey Smirnov <alexey.smir... @gmail.comwrote :
        >
        On Sep 29, 6:24 am, parez <psaw...@gmail. comwrote:
        >
        can any one point me to a good link on
        tableless design + asp.net master pages
        >
        TIA
        >>
        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:ContentPla ceHolder ID="MainPane" runat="server">
        </asp:ContentPlac eHolder></DIV>
        <DIV id="footer"... </DIV>
        </BODY>

        Comment

        • parez

          #5
          Re: tableless design + asp.net master pages

          On Sep 30, 2:34 pm, Alexey Smirnov <alexey.smir... @gmail.comwrote :
          On Sep 30, 5:29 pm, parez <psaw...@gmail. comwrote:
          >
          On Sep 30, 2:21 am, Alexey Smirnov <alexey.smir... @gmail.comwrote :
          >
          On Sep 29, 6:24 am, parez <psaw...@gmail. comwrote:
          >
          can any one point me to a good link on
          tableless design + asp.net master pages
          >
          TIA
          >>
          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:ContentPla ceHolder ID="MainPane" runat="server">
                          </asp:ContentPlac eHolder></DIV>
              <DIV id="footer"...  </DIV>
            </BODY>
          I wasnt thinking right.. Thanks.. that answers my qeustion...

          Comment

          Working...