gpt4 book ai didi

c# - 具有自动完成功能的文本框

转载 作者:太空宇宙 更新时间:2023-11-03 17:23:26 24 4
gpt4 key购买 nike

我正在使用 Visual Studio 2008 进行编程,并使用 .NET Framework 3.5 和 C# 制作 Web 应用程序。所有 DAL 都与一个强大的 Entity Framework 包装器(类似于 VS.net 2010 将使用的包装器)链接。我有一个用于搜索名字和姓氏的文本框。我遇到的问题是我正在使用 AJAX Control Toolkit 2.0,它提供了一个自动完成扩展器,但是通过使用 WebServices (asmx)。有没有其他方法可以在不使用网络服务的情况下使用自动完成功能?

问候,

西蒙

P.s.:抱歉我的英语不好,我尽力了:)!

最佳答案

您不需要实现单独的网络服务来提供具有自动完成功能的文本框,但是,您确实需要为自动完成扩展器提供有效的 Web 方法,它可以用来调用以检索匹配条目的列表。

AutoComplete Extender 控件的 AutoComplete 功能的关键属性是 ServiceMethod 和 ServicePath 属性。 ServiceMethod 指定 AJAX 框架调用的 web 方法 的名称,以检索自动完成下拉列表的匹配项,ServicePath 属性指定将包含的文件的完整路径和文件名ServiceMethod 属性的方法。但是请注意,ServicePath 属性是可选的。

如果省略 ServicePath 属性,AJAX 框架将尝试在文本框和自动完成扩展程序所在的实际网页中的代码中查找 ServiceMethod Web 方法。这通常位于“代码隐藏”文件中。

来自AutoComplete Sample页:

  • ServiceMethod - The web service method to be called. The signature ofthis method must match the following:

[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod]
public string[] GetCompletionList(string prefixText, int count)
{ ... }

Note that you can replace"GetCompletionList" with a name ofyour choice, but the return type andparameter name and type must exactlymatch, including case.

  • ServicePath - The path to the web service that the extender will pull the word\sentence completions from.If this is not provided, the service method should be a page method.

关于c# - 具有自动完成功能的文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1188343/

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