How do I position a label just below a datagrid that changes size?

  • Thread starter Thread starter tom c
  • Start date Start date
T

tom c

In ASP.Net 1.1, I have a datagrid on a form. The height of the grid
can vary with the number of rows loaded into it. I want a label to
appear just below the datagrid. I need the position of the label to
change as the size of the grid changes so it is always just below the
grid. How do I do this?
 
I forgot to mention that I created this web form with the design
screen, so everything is in position absolute. If I just write the
straight html in the html screen without the position absolute I could
make it work, but I would prefer to use the design screen if I could
get it to work.
 
You don't have to layout with absolute positioning to be able to use design
screen. Just drop tables on the form and drop other controls inside table
cells.
 
That works. Thanks!

Eliyahu said:
You don't have to layout with absolute positioning to be able to use design
screen. Just drop tables on the form and drop other controls inside table
cells.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


tom c said:
I forgot to mention that I created this web form with the design
screen, so everything is in position absolute. If I just write the
straight html in the html screen without the position absolute I could
make it work, but I would prefer to use the design screen if I could
get it to work.
 
Back
Top