I have an auto-complete expander in the text box that shows the entries as a list from the database, but whern I click on texbox and start typing anything slurred. my html code
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:AutoCompleteExtender ID="TextBox1_AutoCompleteExtender" runat="server" Enabled="True" TargetControlID="TextBox1" ServicePath="~/WebService.asmx" ServiceMethod="GetCompletionList" MinimumPrefixLength="2" CompletionInterval="1000" EnableCaching="true" CompletionSetCount="20" DelimiterCharacters=";, :" ShowOnlyCurrentWordInCompletionListItem="true" > </asp:AutoCompleteExtender>
And my web service
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using System.Data; using MySql.Data.MySqlClient; using System.Configuration;
source share