我有一个.asmx文件,用于将数据提供给AutoCompleteExtender(AJAX工具包中的Ajax AutoCompleteExtender)。该AutoCompleteExtender与SQL数据库中的存储过程进行通信。

问题出在这里:用户可以选择一个过滤器来搜索数据库(名称,地址,标题等)。该过滤器与DropDownList一起应用。如果我希望我的自动完成功能正常运行,则必须在自动完成功能上应用过滤器。我目前尝试使用DropDownList的SelectedIndex来应用过滤器。

即:如果用户选择地址,则我不能为名称提供自动完成建议。

如果我默认在.asmx文件中放置一个过滤器,则自动完成功能(即名称)可以工作,sql过程没有任何问题,aspx页面也没有问题。我想知道是否有一种方法可以让我在.asmx文件中获取DropDownList的SelectedIndex或执行相同操作的任何替代方法。

这是代码

TextBox + AutoCompleteExtender:

<asp:TextBox ID="txtValue" runat="server"  style="margin-bottom: 0px"></asp:TextBox>
<asp:AutoCompleteExtender ID="AutoCompleteExtenderSearchValue" runat="server" ServicePath="AutoComplete.asmx"
    ServiceMethod="GetSuggestions"  TargetControlID="txtValue" MinimumPrefixLength="1" CompletionSetCount="10"
    EnableCaching="true" UseContextKey="true" ShowOnlyCurrentWordInCompletionListItem="true"></asp:AutoCompleteExtender>


在.asmx中获取AutoCompleteExtender数据的函数:

//will get all the suggestions from what the user typed.
public string[] GetSuggestions(string prefixText, int count, string contextKey)
{
    string name = null;
    string surname = null;
    string givenName = null;
    string title = null;
    string phone = null;
    string department = null;
    string location = null;
    DataTable dt = null;

    List<string> suggestions = new List<string>();
    dt = new DataTable("Users");

    //pr_SEL_Usr
    SqlCommand cmd = new SqlCommand(ConfigManager.SelUser);
    cmd.CommandType = CommandType.StoredProcedure;

    //set the parameters
    cmd.Parameters.Add("@Name", SqlDbType.VarChar).Value = name;
    cmd.Parameters.Add("@Surname", SqlDbType.VarChar).Value = surname;
    cmd.Parameters.Add("@GivenName", SqlDbType.VarChar).Value = givenName;
    cmd.Parameters.Add("@Title", SqlDbType.VarChar).Value = title;
    cmd.Parameters.Add("@Phone", SqlDbType.VarChar).Value = phone;
    cmd.Parameters.Add("@Division", SqlDbType.VarChar).Value = department;
    cmd.Parameters.Add("@Location", SqlDbType.VarChar).Value = location;
    cmd.Parameters.Add("@User_cd", SqlDbType.VarChar).Value = null;

    dt = DBUtils.Execute(cmd);

    for (int i = 0; i < dt.Rows.Count; i++)
    {
        if (i < count)
            suggestions.Add(dt.Rows[i][5].ToString());
        else
            break;
    }

    return suggestions.ToArray();
}


我尝试将变量索引添加到函数中,并使用大小写来设置参数,但这没有用。我已经在互联网上搜索了一种方法,但无济于事。
。净

最佳答案

在过滤器下拉列表上设置AutoPostBack="true"

SelectedIndexChanged事件添加到过滤器下拉列表。在该事件方法中,设置ContextKeyAutoCompleteExtender属性。

protected void FilterDropDownList_SelectedIndexChanged(object sender, EventArgs e)
{
    AutoCompleteExtenderSearchValue.ContextKey = FilterDropDownList.SelectedValue;
}


现在,您的GetSuggestions ASMX方法应该通过contextKey参数接收过滤器下拉列表值。

关于c# - 我们可以将.asmx链接到asp.net控件吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5571492/

10-13 07:07