首页 > 学院 > 开发设计 > 正文

选择列表控件的使用(PickList)

2019-11-14 14:20:28
字体:
来源:转载
供稿:网友

需要下载picklist.dll类库配合使用

 1 <%@ Register TagPRefix="cc1" Namespace="PickListControl" Assembly="PickListControl" %> 2  3 <cc1:PickList id="pklOperator" runat="server" Height="250px" Width="450px"  4             FormID="Form1" IsMoveItemLeft="false" 5                                 IsMoveItemRight="false" AllButtons="false"> 6         <ItemsLeft> 7             <asp:ListItem>1</asp:ListItem> 8             <asp:ListItem>2</asp:ListItem> 9         </ItemsLeft>10         </cc1:PickList>11 //后台测试12 foreach (ListItem item2 in pklOperator.ItemsRight)13         {14             s += item2.Text;15         }

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表