Saturday, March 24, 2012

Panels

I want to place three panels side-by-side on a webform in flowLayout. Is
there an easy way to do this?
TIA
--
MikeHi Mike,
maybe the easiest way is creating a table with 3 cells side by side,
and place a panel inside each one.
Hope it helps,
Nelson Russa
On Fri, 19 Nov 2004 08:40:15 -0700, "Mike Salter"
<trailcr@.hotmail.NOSPAM.com> wrote:

>I want to place three panels side-by-side on a webform in flowLayout. Is
>there an easy way to do this?
>TIA
Sure, put them in a table:
<table>
<tr>
<td><asp:panel ...>...</asp:panel></td>
<td><asp:panel ...>...</asp:panel></td>
<td><asp:panel ...>...</asp:panel></td>
</tr>
</table>
"Mike Salter" wrote:

> I want to place three panels side-by-side on a webform in flowLayout. Is
> there an easy way to do this?
> TIA
> --
> Mike
>
>
Or, use CSS and absolute positioning.
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
"Brad Quinn" <BradQuinn@.discussions.microsoft.com> wrote in message
news:B408A022-6D08-43A1-A412-0BD0E09FC894@.microsoft.com...
> Sure, put them in a table:
> <table>
> <tr>
> <td><asp:panel ...>...</asp:panel></td>
> <td><asp:panel ...>...</asp:panel></td>
> <td><asp:panel ...>...</asp:panel></td>
> </tr>
> </table>
> "Mike Salter" wrote:
>
Is
Be my guest ;)
"Kevin Spencer" wrote:

> Or, use CSS and absolute positioning.
> --
> HTH,
> Kevin Spencer
> ..Net Developer
> Microsoft MVP
> Neither a follower
> nor a lender be.
> "Brad Quinn" <BradQuinn@.discussions.microsoft.com> wrote in message
> news:B408A022-6D08-43A1-A412-0BD0E09FC894@.microsoft.com...
> Is
>
>
A table does the trick. I was just trying to find a way to do it without a
table, but a Panel doesn't have a BREAKAFTER property.
Thanks to All.
--
Mike
"Nelson Russa" <n [dot] russa [at] ebase [dot] pt> wrote in message
news:j76sp0ho8so22dguqenqr5d734kch5eb66@.
4ax.com...
> Hi Mike,
> maybe the easiest way is creating a table with 3 cells side by side,
> and place a panel inside each one.
>
> Hope it helps,
> Nelson Russa
>
> On Fri, 19 Nov 2004 08:40:15 -0700, "Mike Salter"
> <trailcr@.hotmail.NOSPAM.com> wrote:
>
>
We use CSS and absolute positioning for EVERYTHING on the client. It
separates Layout content (HTML) from Layout Presentation code (which resides
entirely in the external CSS document). Yes, it requires more knowledge and
skill to do. The upside is that whenever we need to make a change to the way
the site looks, our programmers (the ones that make the big bucks) don't
have to get involved, and for our UI guy, it's a snap. And for our
developers, who aren't designers, they don't have to think about design and
HTML at all. They just put HTML content (data) in a div (Panel, for those of
you in Rio Linda), give it a class name, and the UI guy does the rest. Does
a great job of streamlining the development and maintenance processes, which
means mo' money for all of us.
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
"Brad Quinn" <BradQuinn@.discussions.microsoft.com> wrote in message
news:49AA8FC6-0400-4583-A5C0-2945591D63F2@.microsoft.com...
> Be my guest ;)
> "Kevin Spencer" wrote:
>
flowLayout.

0 comments:

Post a Comment