My ext.net code for multi combo is as follow:
<ext:MultiCombo ID="Multi1" runat="server" Width="260">
<Items>
<ext:ListItem Text="Item 1" Value="1" />
<ext:ListItem Text="Item 2" Value="2" />
<ext:ListItem Text="Item 3" Value="3" />
<ext:ListItem Text="Item 4" Value="4" />
<ext:ListItem Text="Item 5" Value="5" />
</Items>
</ext:MultiCombo>
How can I get the selected item's text and value from the code behind?
You can Try this way