I want to create multiple select dropdown on the server side. Is that possible and if that possible how? How can I write this code on the server- side?
<dx:ASPxDropDownEdit ClientInstanceName="checkComboBox" ID="ASPxDropDownEdit" runat="server" AnimationType="None" CssClass="otherItemTextBox" ItemStyle-CssClass="detailControl" Width="400px" Caption="<%$ Resources:tables, TabPageNameLabel %>" CaptionCellStyle-CssClass="otherItemLabel">
<DropDownWindowStyle BackColor="#EDEDED" />
<DropDownWindowTemplate>
<dx:ASPxListBox Width="100%" ID="ListBoxLookup" ClientInstanceName="checkListBox" SelectionMode="CheckColumn"
runat="server" Height="200" EnableSelectAll="true" EnableSynchronization="True" OnDataBound="ListBoxLookup_DataBound">
<FilteringSettings ShowSearchUI="true" />
<Border BorderStyle="None" />
<BorderBottom BorderStyle="Solid" BorderWidth="1px" BorderColor="#DCDCDC" />
<ClientSideEvents SelectedIndexChanged="updateText" Init="updateText" />
</dx:ASPxListBox>
<table style="width: 100%">
<tr>
<td style="padding: 4px">
<dx:ASPxButton ID="CloseButton" AutoPostBack="False" runat="server" Text="Close" Style="float: right">
<ClientSideEvents Click="function(s, e){ checkComboBox.HideDropDown(); }" />
<Image IconID="actions_close_16x16devav"></Image>
</dx:ASPxButton>
<dx:ASPxButton ID="DataSearchButton" AutoPostBack="true" runat="server" Text="Search" Style="float: right" OnClick="DataSearchButton_Click">
<Image IconID="actions_search_16x16devav"></Image>
</dx:ASPxButton>
</td>
</tr>
</table>
</DropDownWindowTemplate>
<ClientSideEvents TextChanged="synchronizeListBoxValues" DropDown="synchronizeListBoxValues" />
</dx:ASPxDropDownEdit>