AutocompleteExtender is not working

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Yair m
    New Member
    • Sep 2011
    • 7

    AutocompleteExtender is not working

    Hi,

    I'm using the AutocompleteExt ender of AjaxControlTool kit.
    locally it works (localhost) but in production It doesn't.

    I receive HTTP/1.1 500 Internal Server Error and jsonError=true

    The following is the webservice method signature:
    Code:
    [WebMethod]
    [ScriptMethod]
    public string[] GetSitesIdNameByPartialName(string prefixText, int count)
    and the extender is:
    Code:
            <asp:AutoCompleteExtender ID="txtNames" 
              runat="server" 
              TargetControlID="txtNames_input"
              ServicePath="~/Services/ws.asmx"
              ServiceMethod="GetSitesIdNameByPartialName"
              CompletionSetCount="100"
              MinimumPrefixLength="2"
              CompletionInterval="200"
              EnableCaching="true"
              ShowOnlyCurrentWordInCompletionListItem="true"
              OnClientItemSelected="autoCompleteItemSelected"
              CompletionListCssClass="completeListStyle"
             CompletionListItemCssClass="completeListItemStyle"
              >
    I'm working with VS 2008 .net 3.5

    What is the problem ?

    Thanks,
    Yair
    Last edited by jhardman; Sep 29 '11, 05:54 AM. Reason: Accidentally posted in classic asp forum. Moved to asp.net
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Check the Windows Event Logs on the production server to find out more information about the error...

    -Frinny

    Comment

    Working...