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

 <%@ Register TagPrefix="cc1" Namespace="PickListControl" Assembly="PickListControl" %>

 <cc1:PickList id="pklOperator" runat="server" Height="250px" Width="450px"
FormID="Form1" IsMoveItemLeft="false"
IsMoveItemRight="false" AllButtons="false">
<ItemsLeft>
<asp:ListItem></asp:ListItem>
<asp:ListItem></asp:ListItem>
</ItemsLeft>
</cc1:PickList>
//后台测试
foreach (ListItem item2 in pklOperator.ItemsRight)
{
s += item2.Text;
}
04-26 03:33