gpt4 book ai didi

c# - 我们可以将 .asmx 链接到 asp.net 控件吗?

转载 作者:太空宇宙 更新时间:2023-11-03 16:47:02 25 4
gpt4 key购买 nike

我有一个 .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();
}

我曾尝试向函数添加变量索引并使用 case 来设置参数,但这没有用。我已经在互联网上搜索了一种方法来做到这一点,但无济于事。.net

最佳答案

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

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

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com