HTML Table.
Hi
I want to show two different tables in asp page.
if i use:
<TABLE>
<TR>
<TD>xxx</TD> <TD>xxx</TD>
<TD>xxx</TD> <TD>xxx</TD>
</TR>
</TABLE>
<TABLE>
<TR>
<TD>xxx</TD> <TD>xxx</TD>
<TD>xxx</TD> <TD>xxx</TD>
</TR>
</TABle>
then table 2 will be shown below the table 1, but i want to show them horizontal way and not vertical.
So i do this:
<TABLE>
<TR>
<TD>
<TABLE>
<TR>
<TD>xxx</TD> <TD>xxx</TD>
<TD>xxx</TD> <TD>xxx</TD>
</TR>
</TABLE>
</TD>
<TD>
<TABLE>
<TR>
<TD>xxx</TD> <TD>xxx</TD>
<TD>xxx</TD> <TD>xxx</TD>
</TR>
</TABle>
</TD>
</TR>
</TABLE>
now the problem is that if second table grows vertically, and table 1 remains as it is e.g. table 2 has 100 rows and table 1 has 10 rows then table 1 appears at the center of screen so u have to scroll down to view table 1.
I tried to align top both the table but not working.
Any Idea?
Thanks in advance.
Rupen Anjaria.:)
------------------
We CAN'T avoid problems, but can solve it.
|