ASP.NET AJAX“当您键入时”功能性
虽然这是常见问题解答,但我仍然找不到合适的解决方案。当用户在 TextBox 中键入内容时,我想过滤掉一个列表(使用放置到 UpdatePanel 的 ListView 控件呈现)。 这篇博文 准确描述了我需要的内容 - 添加指定数量的字符后引发回发。但该实现有一些小缺点。我很惊讶 AutoCompleteExtender 不够通用,无法处理此类情况,而且我找不到其他现成的解决方案。那么您会推荐什么作为替代解决方案?
Although this is FAQ i still couldn't find a suitable solution. I'd like to filter out a list (rendered with ListView control placed to UpdatePanel) as user types something in TextBox. This blog post describes exactly what i need - raise a postback after a specified number of characters added. But the implementation has a few minor drawbacks. I'm surprised AutoCompleteExtender isn't generic enough to handle such cases and that i cannot find other out-of-the-box solutions. So what would you recommend as an alternative solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 jQuery 自动完成插件 - 您应该能够使用其中的一些代码来开始。
插件页面
You could have a look at the jQuery autocomplete plugin - you should be able to use some of the code there to get you started.
Plugin page