0

我正在尝试在文本框上实现自动完成功能,该功能使用 AJAX 工具包中的 AutoCompleteExtender 从我们的数据库中提取数据。文本框和控件位于嵌套在 aspx 页面(具有更新面板)上的用户控件上;脚本管理器位于母版页上。

<asp:TextBox ID="txtTowelManufacturer" runat="server" Width="200px"></asp:TextBox>
<ajaxToolkit:AutoCompleteExtender ID="txtTowelManufacturer_AutoCompleteExtender" 
    runat="server" MinimumPrefixLength="1" ServiceMethod="GetCompletionList"
    TargetControlID="txtTowelManufacturer" UseContextKey="True">
</ajaxToolkit:AutoCompleteExtender>

[System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]
public static string[] GetCompletionList(string prefixText, int count, string contextKey)
{
    ...
}

当我使用 cassini 在我的开发盒上运行该页面时,使用扩展器会生成 401 Unauthorized 错误,没有进一步的调试信息。帖子正确,回复为空:

{"Message":"There was an error processing the request.","StackTrace":"","ExceptionType":""}

如果我直接或使用相对路径手动指定 ServicePath,则会收到相同的错误。如果我指定了不正确的路径,它会正确生成 404 Not Found 错误,所以我知道它正在寻找正确的位置。

我一直无法弄清楚为什么在这种情况下会出现身份验证错误。我们没有使用 Windows 身份验证或跨越任何域,虽然多次提出 401 问题,但所提出的解决方案都没有对许多人有效,

任何尝试的线索将不胜感激。

4

1 回答 1

1

尝试将GetCompletionList()方法从用户控件的ascx.cs文件移动到页面的aspx.cs.

于 2013-02-08T16:33:36.057 回答