ATLAS Question
-
Hi All, I've got and ASP.NET ATLAS AutoCompleteExtender control on my page, along with a textbox. ASPX: Web Service Code:
[WebMethod] public string[] FetchCompanies(string prefixText, int count) { CompanyDataWrapper wrapper = new CompanyDataWrapper(m_connection); return wrapper.FetchCompaniesByPrefix(prefixText.ToUpper()); }
When I start typing in the textbox, nothing happens. No error message, nothing at all. I've tested the web service and it works fine. Any ideas? Thanks a lot. :) -
Hi All, I've got and ASP.NET ATLAS AutoCompleteExtender control on my page, along with a textbox. ASPX: Web Service Code:
[WebMethod] public string[] FetchCompanies(string prefixText, int count) { CompanyDataWrapper wrapper = new CompanyDataWrapper(m_connection); return wrapper.FetchCompaniesByPrefix(prefixText.ToUpper()); }
When I start typing in the textbox, nothing happens. No error message, nothing at all. I've tested the web service and it works fine. Any ideas? Thanks a lot. :)Whoops, ASPX code looks like this:
<asp:TextBox ID="txtSearch" runat="server"></asp:TextBox> <asp:AutoCompleteExtender
etc.... -- modified at 18:00 Monday 6th November, 2006