asp.net 中的 AutoCompleteExtender ajax ,
您好,我正在使用 AutoCompleteExtender ajax 控件。我正在获取 LIST 集合中的字符串列表。我只想填充那些用户作为前缀文本输入的字符串。如何做到这一点。我遵循 ajax 工具包中给出的示例。假设用户输入“ca”,那么如果列表包含类似的列表, ‘猫’、‘狗’、‘驴’、‘老鼠’、‘手推车’……等等。
然后它应该只填充“猫”和“购物车”。 如何实现这一目标?
Hi I am using the AutoCompleteExtender ajax control. I am getting the list of strings in LIST collection. I want to populate only those strings, which user typing as prefix text. how to do this. I am following the example given in ajax toolkit.let say user typing "ca" then if list contain the list like,
'cat', 'dog', donkey', 'mouse','cart'....etc.
Then it should populate only 'cat' and cart'.
How to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在示例中有属性的描述。引用:
因此,您需要编写一个 Web 服务,其中包含一个根据用户输入返回建议列表的方法。
In the example there's a description of the properties. Quote:
So you need write a web service which will contain a method returning the list of suggestions based on the user input.