AutoCompleteExtender有时可以正常工作

时间:2008-12-28 21:20:25

标签: c# javascript .net-3.5 textboxextender

    [System.Web.Services.WebMethod]
    [System.Web.Script.Services.ScriptMethod]
    public string[] GetRowsByFilter(string prefixText, int count)
    //public static List<string> GetRowsByFilter(string prefixText)
    {
        DataTable table = ds.Tables[0];
        string filter = "stShortName LIKE '" + prefixText.Replace("'", "''") + "%'";
        DataRow[] foundRows;
        List<string> items = new List<string>(count);

        foundRows = table.Select(filter);
        if (foundRows.Length > 0)
        {
             for (int i = 0; i < foundRows.Length; i++)
            {
                items.Add((string)foundRows[i]["stShortName"]);
            }
            return items.ToArray();
        }
        else
        {
            items.Add("No '" + prefixText + "' items found");
            return items.ToArray();
        }
    }

<ajaxToolkit:AutoCompleteExtender 
    id="AutoCompleteExtenderTxtSite" 
    BehaviorID="AutoCompleteEx"
    Runat="server" 
    Targetcontrolid="txtSiteASP"
    ServiceMethod="GetRowsByFilter"
    MinimumPrefixLength="1" 
    CompletionInterval="1000"
    EnableCaching="false"
    CompletionSetCount="10" 
    CompletionListCssClass="autocomplete_completionListElement" 
    CompletionListItemCssClass="autocomplete_listItem" 
    CompletionListHighlightedItemCssClass="autocomplete_highlightedListItem"
    DelimiterCharacters=";, :"
    ShowOnlyCurrentWordInCompletionListItem="true" 
  >
    <Animations>
        <OnShow>
            <Sequence>
                <OpacityAction Opacity="0" />
                <HideAction Visible="true" />
                <ScriptAction Script="
                    // Cache the size and setup the initial size
                    var behavior = $find('AutoCompleteEx');
                    if (!behavior._height) {
                        var target = behavior.get_completionList();
                        behavior._height = target.offsetHeight - 2;
                        target.style.height = '0px';
                    }" />
                <Parallel Duration=".4">
                    <FadeIn />
                    <Length PropertyKey="height" StartValue="0" EndValueScript="$find('AutoCompleteEx')._height" />
                </Parallel>
            </Sequence>
        </OnShow>
        <OnHide>
            <Parallel Duration=".4">
                <FadeOut />
                <Length PropertyKey="height" StartValueScript="$find('AutoCompleteEx')._height" EndValue="0" />
            </Parallel>
        </OnHide>
    </Animations>
</ajaxToolkit:AutoCompleteExtender>

大部分内容直接来自Toolkit示例网站。除了从数据库填充数组之外,我还使用Web服务完全按照样本完成它。两者都完美地填充阵列,并且有时都工作。缺乏明显的表现,它们似乎完全相同。

我在另一个页面上使用了几个日历控件,它们完美无瑕地工作,但是浪费了太多时间来尝试使这项工作保持一致。

1 个答案:

答案 0 :(得分:1)

我发现如果服务器端代码需要很长时间才能执行,那么客户端AJAX请求似乎已经超时了。

我没有尝试证明这一点,因为当我可以调整服务器端代码以提高性能时,这种努力似乎非常值得。

检查您的DataSet是否已缓存,如果没有,检索它需要多长时间?检查数据库索引。 SQL Server 2005中更好地优化了Sql LIKE查询。

如果它不是超时并且实际上是服务器端错误,则通过浏览器访问Web服务并键入将在AutoComplete文本框中使用的查询来在本地测试Web服务。或者,在没有结果后立即检查服务器事件日志,并查找ASP.NET警告事件。