Ajax Autocompleteextender not showing the autocompletelist to choose

Posted by subash on Stack Overflow See other posts from Stack Overflow or by subash
Published on 2010-04-23T06:05:29Z Indexed on 2010/04/23 6:13 UTC
Read the original article Hit count: 418

Filed under:

i was working ajax auto completeextender witha text box in asp.net and c#.net. i am not able to get list to choose ,i have the appropriate web service method called..can anyone guide me to get the automo complete done.

<form id="form1" runat="server">
    <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
    </asp:ToolkitScriptManager>
    <div>
    <asp:AutoCompleteExtender runat="server" ID="autoComplete1" TargetControlID="TextBox1"
    ServiceMethod="GetCompletionList"
    ServicePath="AutoComplete.asmx"
    MinimumPrefixLength="0" 
    CompletionInterval="50"
    EnableCaching="true"
    CompletionSetCount="1"    
    DelimiterCharacters=";, :"
    ShowOnlyCurrentWordInCompletionListItem="true">        
</asp:AutoCompleteExtender>
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    </div>
    </form>

and the web service method contains the following code

[WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    [ScriptService]
    // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
    // [System.Web.Script.Services.ScriptService]
    public class AutoComplete : System.Web.Services.WebService
    {

        [WebMethod]
        public string HelloWorld()
        {
            return "Hello World";
        }

        [WebMethod]
        public string[] GetCompletionList(string prefixText, int count)
        {
            List<string> responses = new List<string>();

            for (int i = 0; i < count; i++)

                responses.Add(prefixText + (char)(i + 65));
            return responses.ToArray();
        }
    }

© Stack Overflow or respective owner

Related posts about autocompleteextender