0 this is the code which i am using to implement search in drop down list but i am only able to perform search on first character only not the string which i am typing
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Search.aspx.cs" Inherits="WebApplication2.Search" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<br />
<br />
<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource1" DataTextField="Caption_name" DataValueField="Caption_name"></asp:DropDownList>
<asp:SqlDataSource runat="server" ID="SqlDataSource1" ConnectionString='<%$ ConnectionStrings:ICSPVRConnectionString %>' SelectCommand="SELECT [Caption_name] FROM [Commercial_caption]"></asp:SqlDataSource>
<br />
<br />
<ajaxToolkit:ListSearchExtender ID="ListSearchExtender1" TargetControlID="DropDownList1" PromptText="Select Caption" PromptPosition="Top" runat="server"></ajaxToolkit:ListSearchExtender>
</div>
</form>
</body>
</html>
0 What not working? Error message?
0 http://www.aspsnippets.com/Articles/AJAX-Cascading-DropDown-Example-in-ASPNet.aspx
http://jqueryui.com/autocomplete/
https://forums.asp.net/t/1578361.aspx?dropdownlist+in+ajax+like+google+search+