One way is to create a 1 row 2 column table and drop one in each table cell.
It may require some cut and paste in code view but it can be done.
It will look like this in code view
<body> |
|
<form id="form1" runat="server"> |
|
|
<table style="width: 100%"> |
<tr> |
<td><asp:DetailsView id="DetailsView1" runat="server" Height="50px" Width="125px"> |
</asp:DetailsView></td> |
<td><asp:DetailsView id="DetailsView2" runat="server" Height="50px" Width="125px"> |
</asp:DetailsView></td> |
</tr> |
</table> |
</form> |
|
FrontPage MVP