.net中实现listBox左右移动
今天用到listbox左右移动在网上找了一个,网友分享出来的,感觉不错,这里推荐给大家
<divstyle="width:200px;float:left;">
<table>
<tr>
<td width="50%">
<asp:ListBoxID="ListBox2"runat="server"Height="128px"Width="148px">
<asp:ListItemValue="张三"></asp:ListItem>
<asp:ListItemValue="李四"></asp:ListItem>
<asp:ListItem>王五</asp:ListItem>
</asp:ListBox>
</td>
<td>
<asp:ButtonID="Button2"runat="server"Text="《"></asp:Button>
<asp:ButtonID="Button1"runat="server"Text="<"></asp:Button>
<asp:ButtonID="Button3"runat="server"Text=">"></asp:Button>
<asp:ButtonID="Button4"runat="server"Text="》"></asp:Button>
</td>
<tdalign="left"width="50%">
<asp:ListBoxID="ListBox1"runat="server"Height="128px"Width="148px"></asp:ListBox>
</td>
</tr>
</table>
</div>
以上所述就是本文的全部内容了,希望对大家熟练使用listbox能够有所帮助。