I am trying to place two listviews on one screen.
How do I place two listviews on the right and left?
I didn't put any code between <asp:ListView ID="listAssign" ~~~~~~ </asp:ListView> and <asp:ListView ID="listNoAssign" ~~~~~~~`</asp:ListView>.
How do I place two listviews on the right and left?
I didn't put any code between <asp:ListView ID="listAssign" ~~~~~~ </asp:ListView> and <asp:ListView ID="listNoAssign" ~~~~~~~`</asp:ListView>.
C#:
<asp:ListView ID="listAssign" runat="server" Visible="true">
<LayoutTemplate>
<table border="0px" cellpadding="1" width="100">
<tr>
<th>SELECT</th>
<th>ORDER_ID</th>
<th>PLAN_TIME</th>
<th>PRODUCT_CODE</th>
<th>ALC_CODE</th>
<th>ORDER_STATUS_NM</th>
</tr>
<tr id="itemplaceholder" runat="server"></tr>
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td>
<asp:CheckBox ID="chkSELECT" runat="server" AutoPostBack="true"OnCheckedChanged="CheckBoxHeader_CheckedChanged" /></td>
<td>
<asp:Label ID="ORDER_ID" Text='<%#Eval("ORDER_ID") %>' runat="server" Visible="true"></asp:Label></td>
<td>
<asp:Label ID="PLAN_TIME" Text='<%#Eval("PLAN_TIME") %>' runat="server" Visible="true"></asp:Label></td>
</tr>
</ItemTemplate>
</asp:ListView>
<asp:ListView ID="listNoAssign" runat="server" Visible="true">
<LayoutTemplate>
<table border="0px" cellpadding="1" width="100">
<tr>
<th>SELECT</th>
<th>ORDER_ID</th>
<th>PLAN_TIME</th>
<th>PRODUCT_CODE</th>
<th>ALC_CODE</th>
<th>ORDER_STATUS_NM</th>
</tr>
<tr id="itemplaceholder" runat="server"></tr>
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td>
<asp:CheckBox ID="chkSELECT" runat="server" AutoPostBack="true"OnCheckedChanged="CheckBoxHeader_CheckedChanged" /></td>
<td>
<asp:Label ID="ORDER_ID" Text='<%#Eval("ORDER_ID") %>' runat="server" Visible="true"></asp:Label></td>
<td>
<asp:Label ID="PLAN_TIME" Text='<%#Eval("PLAN_TIME") %>' runat="server" Visible="true"></asp:Label></td>
</tr>
</ItemTemplate>
</asp:ListView>