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:
and the extender is:
I'm working with VS 2008 .net 3.5
What is the problem ?
Thanks,
Yair
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)
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" >
What is the problem ?
Thanks,
Yair
Comment