asp.net“自动完成” - 用特殊字符填充
首先,我使用的是asp.net c#。
所以我在很多网站上进行了搜索,但还没有找到任何解决方案。
我使用 asp.net ajax 扩展中的 autocompleteextender。当我输入特殊字符时,我想在文本框中填充特定的数据列表。例如; “当我在文本框中输入“@”等特定字符时,它应该从数据库中填充特定的数据列表”。
直到文本框出现像“@”这样的字符,它应该填充一些列表。但我不想把它填在第一个词上。在我输入字符“@”后,它应该填充我的列表。
这可以通过 ajax 自动完成扩展器实现吗?如何?如果没有,怎么办?
谢谢
First of all, i'm using asp.net c#.
So i searched in many websites but i didnt find any solutions yet.
I use autocompleteextender from asp.net ajax extension. I want to populate specific data list in a textbox when i typed a special character. For example; "When i type a specific character like "@" in a textbox, it should populate me from the db a specific data list".
Until the textbox has a character like "@" it should populated me some list. But i dont wanna populate it on the first word. After i have typed the character "@", it should populate me the list.
Is this possible with ajax auto complete extender? How? If not, How?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 AjaxControlToolkit 是一个开源项目,因此您可以下载项目源代码并进行所需的所有自定义。在这种特殊情况下,只需添加很少的更改即可:编辑 MicrosoftAjax.Extended 项目的 AutoComplete 文件夹中的 AutoCompleteBehavior.pre.js 文件。您需要进行以下更改:在 _onTimerTick 方法中从
To更改为
As the AjaxControlToolkit is an open source project, you can download project sources and make all customization that you need. In this particular case enough to add very few changes: edit the AutoCompleteBehavior.pre.js file in AutoComplete folder of MicrosoftAjax.Extended project. You need following changes: in the _onTimerTick method change from
To