Home All Groups Group Topic Archive Search About
Author
17 Dec 2005 10:06 PM
Thom Little
On a master page I have three panels and a ContentPlaceHolder.

What is the "trick" to allow me to have one of the panels to the left of the
ContentPlaceHolder?

Typical ...

TopPanel
LeftPanel    ContentPlaceHolder
BottomPanel

--
--  Thom Little  --  www.tlanet.net  --  Thom Little Associates, Ltd.
--

Author
17 Dec 2005 10:44 PM
S. Justin Gengo
Thom,

The simplest way would be to use a table like this:

<table width=100%>
    <tr>
        <td colspan=2>
            Top Panel
        </td>
    </tr>
    <tr>
        <td width=128>
            Left Panel
        </td>
        <td>
            Content Panel
        </td>
    </tr>
    <tr>
        <td colspan=2>
            Bottom Panel
        </td>
    </tr>
</table>

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
                            Nietzsche
Show quote
"Thom Little" <t***@tlanet.net> wrote in message
news:eSU9tY1AGHA.208@tk2msftngp13.phx.gbl...
> On a master page I have three panels and a ContentPlaceHolder.
>
> What is the "trick" to allow me to have one of the panels to the left of
> the ContentPlaceHolder?
>
> Typical ...
>
> TopPanel
> LeftPanel    ContentPlaceHolder
> BottomPanel
>
> --
> --  Thom Little  --  www.tlanet.net  --  Thom Little Associates, Ltd.
> --
>
>
>
Author
18 Dec 2005 6:12 AM
Thom Little
Thank you.

I deluded myself into thinking that it would have somehow been different in
2.0.

--
--  Thom Little  --  www.tlanet.net  --  Thom Little Associates, Ltd.
--

Show quote
"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:%23G7HYt1AGHA.2320@TK2MSFTNGP11.phx.gbl...
> Thom,
>
> The simplest way would be to use a table like this:
>
> <table width=100%>
>    <tr>
>        <td colspan=2>
>            Top Panel
>        </td>
>    </tr>
>    <tr>
>        <td width=128>
>            Left Panel
>        </td>
>        <td>
>            Content Panel
>        </td>
>    </tr>
>    <tr>
>        <td colspan=2>
>            Bottom Panel
>        </td>
>    </tr>
> </table>
>
> --
> Sincerely,
>
> S. Justin Gengo, MCP
> Web Developer / Programmer
>
> www.aboutfortunate.com
>
> "Out of chaos comes order."
>                            Nietzsche
> "Thom Little" <t***@tlanet.net> wrote in message
> news:eSU9tY1AGHA.208@tk2msftngp13.phx.gbl...
>> On a master page I have three panels and a ContentPlaceHolder.
>>
>> What is the "trick" to allow me to have one of the panels to the left of
>> the ContentPlaceHolder?
>>
>> Typical ...
>>
>> TopPanel
>> LeftPanel    ContentPlaceHolder
>> BottomPanel
>>
>> --
>> --  Thom Little  --  www.tlanet.net  --  Thom Little Associates, Ltd.
>> --
>>
>>
>>
>
>
Author
19 Dec 2005 6:50 AM
Steven Cheng[MSFT]
Thanks for Justin's good suggestion.

Hi Thom,

For master page, we can just design it as a normal asp.net web page, and
generally using html table to structure the page's layout is the most
common approach.... 

Please feel free to post here when you need any further assistance..

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)



--------------------
| From: "Thom Little" <t***@tlanet.net>
| References: <eSU9tY1AGHA.***@tk2msftngp13.phx.gbl>
<#G7HYt1AGHA.2***@TK2MSFTNGP11.phx.gbl>
| Subject: Re: LeftPanel
| Date: Sun, 18 Dec 2005 01:12:31 -0500
| Lines: 69
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| X-RFC2646: Format=Flowed; Response
| Message-ID: <OZtWLo5AGHA.***@TK2MSFTNGP15.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: 65.99.185.176
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP15.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:365547
Show quote
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Thank you.
|
| I deluded myself into thinking that it would have somehow been different
in
| 2.0.
|
| --
| --  Thom Little  --  www.tlanet.net  --  Thom Little Associates, Ltd.
| --
|
| "S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
| message news:%23G7HYt1AGHA.2320@TK2MSFTNGP11.phx.gbl...
| > Thom,
| >
| > The simplest way would be to use a table like this:
| >
| > <table width=100%>
| >    <tr>
| >        <td colspan=2>
| >            Top Panel
| >        </td>
| >    </tr>
| >    <tr>
| >        <td width=128>
| >            Left Panel
| >        </td>
| >        <td>
| >            Content Panel
| >        </td>
| >    </tr>
| >    <tr>
| >        <td colspan=2>
| >            Bottom Panel
| >        </td>
| >    </tr>
| > </table>
| >
| > --
| > Sincerely,
| >
| > S. Justin Gengo, MCP
| > Web Developer / Programmer
| >
| > www.aboutfortunate.com
| >
| > "Out of chaos comes order."
| >                            Nietzsche
| > "Thom Little" <t***@tlanet.net> wrote in message
| > news:eSU9tY1AGHA.208@tk2msftngp13.phx.gbl...
| >> On a master page I have three panels and a ContentPlaceHolder.
| >>
| >> What is the "trick" to allow me to have one of the panels to the left
of
| >> the ContentPlaceHolder?
| >>
| >> Typical ...
| >>
| >> TopPanel
| >> LeftPanel    ContentPlaceHolder
| >> BottomPanel
| >>
| >> --
| >> --  Thom Little  --  www.tlanet.net  --  Thom Little Associates, Ltd.
| >> --
| >>
| >>
| >>
| >
| >
|
|
|

AddThis Social Bookmark Button