在 ASP.Net 中使用 C# 从 SQL Server DB 自动完成

发布于 2024-11-16 09:21:30 字数 187 浏览 0 评论 0原文

我尝试使用 C# 代码自动完成下拉菜单。我可以不使用 AJAX 吗?或者必须使用AJAX。我该怎么办? 我可以这样使用吗?

public string[] GetCompletionList(string prefixText, int count, string contextKey) 
{ ... }

I try AutoComplete dropdown using C# code. Can I do without using AJAX. Or must use AJAX. How could I do?
Can I use like that?

public string[] GetCompletionList(string prefixText, int count, string contextKey) 
{ ... }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青朷 2024-11-23 09:21:30

您必须使用Ajax,因为如果没有它,您每次击键都会重新加载页面。您可以使用名为 AutocompleteJQuery 插件 或进行 Ajax 调用。

你可以在这里找到自动完成 http://docs.jquery.com/UI/Autocomplete

you must use Ajax because without it you will reload your page for every key stroke. You can use JQuery plugin called Autocomplete or make your Ajax call.

you can find autocomplete here http://docs.jquery.com/UI/Autocomplete

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文