|
 |
aspx_beginners thread: asp:Table formatting
Message #1 by "John Tyson" <jtyson@t...> on Tue, 11 Feb 2003 07:23:36 -0800
|
|
Hi,
This may be a really dumb question, but I have an aspx page that has an
asp:Table control on it. I have controls (specifically a DataList in an
asp:Panel) that I would like to appear directly below the asp:Table, but
for some reason it appears instead to the right of the asp:Table. I've
tried placing <br/> after the asp:Table to no avail - could someone
offer me a suggestion as to how to force the other controls to appear
below the asp:Table on my web page?
Thanks,
John
Message #2 by stu9820 <stu9820@w...> on Tue, 11 Feb 2003 13:01:26 -0500
|
|
If you can put the asp:panel in a div or span tag you can set its position
with CSS:
style
.panel
position: absolute;
left: 5px;
top: 425px;
/style
But this is ONLY if you can put div or span tags around the asp:panel.
>===== Original Message From "aspx_beginners" <aspx_beginners@p...>
=====
>Hi,
>
>This may be a really dumb question, but I have an aspx page that has an
>asp:Table control on it. I have controls (specifically a DataList in an
>asp:Panel) that I would like to appear directly below the asp:Table, but
>for some reason it appears instead to the right of the asp:Table. I've
>tried placing <br/> after the asp:Table to no avail - could someone
>offer me a suggestion as to how to force the other controls to appear
>below the asp:Table on my web page?
>
>Thanks,
>
>John
>
|
|
 |