Posted on: 5/18/2015 9:21:36 PM | Views : 696

I have a AutoCompleteExtender on my aspx page which calls a web service (asmx) to provide suggestions on the textbox but for some reason the web service method is not geting called as I know this through seting a breakpoint on the mehod. The AutoCompleteExtender gets the suggestions from an mdf file in this project.
I have been searching and trying to figure this out all day and its driving me crazy.
Here is my AutoCompleteExtender:
<div class="form-group"> <asp:Label runat="server" AssociatedControlID="StudentName" CssClass="col-md-2 control-label">Student ID</asp:Label> <div class="col-md-10"> <asp:TextBox runat="server" ID="StudentName" TextMode="SingleLine" CssClass="form-control" /> <cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat= ...

Go to the complete details ...