/* Add DropDownList Control */ < asp:DropDownList ID="DropDownList1" runat="server" > < /asp:DropDownList >/* Add ListSearchExtender Control *//* Set TargetControlID Property to DropDownList1 (Name of DropDownlist) */ < cc1:ListSearchExtender ID="ListSearchExtender2" runat="server" TargetControlID="DropDownList1" > < /cc1:ListSearchExtender >/* Add ListBox Control */ < asp:ListBox ID="ListBox1" runat="server" >< /asp:ListBox >/* Add ListSearchExtender Control *//* Set TargetControlID Property to ListBox1 (Name of ListBox) */ < cc1:ListSearchExtender ID="ListSearchExtender1" runat="server" TargetControlID="ListBox1" > < /cc1:ListSearchExtender >/* Dropdownlist Population */ Public Sub PopulateDropDownList () 'Populate Some items DropDownList1.Items.Add ("Arabic") DropDownList1.Items.Add ("English") DropDownList1.Items.Add ("Tamil") End Sub/* ListBox Population */ Public Sub PopulateListBox () 'Populate Some items ListBox1.Items.Add ("Arabic") ListBox1.Items.Add ("English") ListBox1.Items.Add ("Tamil") End Sub