LeftPanel

  • Thread starter Thread starter Thom Little
  • Start date Start date
T

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,

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
 
Thank you.

I deluded myself into thinking that it would have somehow been different in
2.0.
 
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" <[email protected]>
| References: <[email protected]>
<#[email protected]>
| 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: <[email protected]>
| 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
| 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.
| --
|
| message | > 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
| > | >> 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.
| >> --
| >>
| >>
| >>
| >
| >
|
|
|
 
Back
Top