Panels

  • Thread starter Thread starter Mike Salter
  • Start date Start date
M

Mike Salter

I want to place three panels side-by-side on a webform in flowLayout. Is
there an easy way to do this?

TIA
 
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
 
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>
 
Or, use CSS and absolute positioning.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
Be my guest ;)

Kevin Spencer said:
Or, use CSS and absolute positioning.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
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.
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top