Quote:
|
Originally Posted by andreasberglind
I have a page containing several datagrids, placed one below the other.
Now I would like to place the second one directly under the first one. If the first one returns one row, I want the second one directly below that row. If the first one returns 50 rows I want still the second one to appear below all the rows of the first one. it should be easily solved, or at least I hope so. Does anyone know what to do?
|
<asp:datagrid id="dataGrid1" runat="server"/>
<asp:datagrid id="dataGrid2" runat="server"/>
After processing, the datagrid is just a table. You can modify a few attributes and templates to get what you want.