Table?
-
Is it possible to add multiple tables in Horizontal row in C#.net? How ?
-
Is it possible to add multiple tables in Horizontal row in C#.net? How ?
-
Hi, The question you asked is a bit vague. Please make it more clear.
Happy Programming, Vimal Raj MCAD.Net www.techisolutions.info
I want to design the page using source of the .Net form. In that i want to add several tables in the same row. Is it possible to create different tables in the horizontal flow?
-
I want to design the page using source of the .Net form. In that i want to add several tables in the same row. Is it possible to create different tables in the horizontal flow?
why dont u join the tables using query and display the data
-
I want to design the page using source of the .Net form. In that i want to add several tables in the same row. Is it possible to create different tables in the horizontal flow?
I am still not sure about your requirement. I am assuming that you want to include multiple html tables inside a row of another html table. Is it something like this.
<table width="100%">
<tr>
<td colspan=3>
</tr>
<tr>
<td>
<table><tr><td>First Table</td></tr></table>
</td><td>
<table><tr><td>Second Table</td></tr></table>
</td><td>
<table><tr><td>Third Table</td></tr></table>
</td>
</tr>
</table>Or are you talking about displaying data from multiple database tables on a single row of your html table?
Happy Programming, Vimal Raj MCAD.Net www.techisolutions.info