Hi!
I'm trying to get AutoComplete working in a projecto of mine but i can't get it to work :(
Here's my .aspx:
<label>Nome:</label><asp:TextBox ID="nomeTextBox" Width="325px" MaxLength="30" runat="server"></asp:TextBox>
<asp:AutoCompleteExtender ID="nomeAutoComplete" TargetControlID="nomeTextBox"
runat="server"
MinimumPrefixLength="1"
CompletionInterval="100"
CompletionSetCount="5"
ServiceMethod="GetNomes"
ServicePath="~/App_Code/Utilitarios.cs"
UseContextKey="True">
</asp:AutoCompleteExtender>
And here's my service method:
[WebMethod]
[ScriptMethod]
public string[] GetNomes(string prefixText, int count)
{
count =
View Complete Post