您的位置:首页 > 其它

.net中实现listBox左右移动

2015-03-13 08:55 726 查看
<div style="width:200px; float:left;">     <table>     <tr>         <td  width="50%">         <asp:ListBox ID="ListBox2" runat="server" Height="128px" Width="148px">             <asp:ListItem Value="张三"></asp:ListItem>             <asp:ListItem Value="李四"></asp:ListItem>             <asp:ListItem>王五</asp:ListItem>             </asp:ListBox>         </td>         <td>             <asp:Button ID="Button2" runat="server" Text="《"></asp:Button>             <asp:Button ID="Button1" runat="server" Text="<"></asp:Button>             <asp:Button ID="Button3" runat="server" Text=">"></asp:Button>             <asp:Button ID="Button4" runat="server" Text="》"></asp:Button>         </td>         <td align="left" width="50%">              <asp:ListBox ID="ListBox1" runat="server" Height="128px" Width="148px"></asp:ListBox>         </td>     </tr>     </table>     </div>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  .net listBox 左右移动