I'm new-ish to asp.net/vb...and just now trying to implement the ajax autocompleteextender & using web services for the first time,...So please understand if my question is vague...
I’m trying to implement the ajax autocompleteextender onto an existing page I have…
It’s not working…I think I’m probably not creating the web service correctly??? As of now, I have a “dummy” web service…it should just return “hello world” as an option when the user types anything into the test textbox. I don’t see that it’s calling the web service at all. Nothing happens when I type in the testAutoComplete textbox. No errors. Is there a way to test if it’s even calling the web service? Or, run the web service by itself, to see if that is created OK? This might be the first ajax thing I have in my website…so maybe the site is not “ajax-enabled” or something? But, the “<asp:AutoCompleteExtender>” does not error, so I kinda don’t think so?
Thanks!
Here’s my aspx page with the autocompleteextender (/ProductMaintenance/Main/ProductSearch.aspx):
<asp:TextBox ID="testAutoComplete" runat="server"></asp:TextBox>
&n
View Complete Post