.net中实现listBox左右移动
程序员文章站
2024-02-14 17:44:22
今天用到listbox左右移动在网上找了一个,网友分享出来的,感觉不错,这里推荐给大家
复制代码 代码如下:
<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>
今天用到listbox左右移动在网上找了一个,网友分享出来的,感觉不错,这里推荐给大家
复制代码 代码如下:
<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>
以上所述就是本文的全部内容了,希望对大家熟练使用listbox能够有所帮助。
下一篇: C#操作mysql数据库的代码实例
推荐阅读
-
.net中实现listBox左右移动
-
.Net中实现无限分类的2个例子
-
ASP.NET中配合JS实现页面计时(定时)自动跳转
-
ASP.NET中实现把Json数据转换为ADO.NET DataSet对象
-
ASP.NET中实现Form表单字段值自动填充到操作模型中
-
ASP.NET中实现把form表单元素转为实体对象或集合
-
ASP.NET中实现根据匿名类、datatable、sql生成实体类
-
.NET中实现彩色光标、动画光标及自定义光标的方法
-
asp.net实现将Excel中多个sheet数据导入到SQLSERVER中的方法
-
在ASP.NET 2.0中操作数据之六十三:GridView实现批量删除数据