|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
LeftPanelOn 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> -- Show quoteHide quoteSincerely, 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. > -- > > > Thank you.
I deluded myself into thinking that it would have somehow been different in 2.0. Show quoteHide 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. >> -- >> >> >> > > 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> <#G7HYt1AGHA.2***@TK2MSFTNGP11.phx.gbl>| References: <eSU9tY1AGHA.***@tk2msftngp13.phx.gbl> | Subject: Re: LeftPanel microsoft.public.dotnet.framework.aspnet:365547| 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 Show quoteHide 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. | >> -- | >> | >> | >> | > | > | | |
Other interesting topics
breaking the model
ASP.NET Web Server Controls Treeview problem, get value from selected node in another usercontrol ? asp.net 2.0 Best way to create Page_PreRender in VB.Net (Hard one,any expert out threre ? ) Create object from string ? add webcontrols dynamically on page. Textbox Width Issue (Rendered differently for different browsers) Newbie Question - Master Page triggering validator Connection string problem asp.net 2.0 on apple clients Distributed 3 Tier & WebService Design Question |
|||||||||||||||||||||||