更新面板更新
我在更新面板中有一个 ASP.NET AJAX 自动完成文本框和另外两个下拉列表。 在自动完成文本框中选择一个项目时,我想从数据库填充下拉列表。
知道如何实现这一目标吗?
谢谢 维克斯
I have a ASP.NET AJAX Autocomplete Textbox and Two other dropdownlist in a Update Panel.
On selection of an item in Autocomplete Textbox, I want to populate Dropdown list from Database.
any idea how to achive this?
Thanx
Vks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这个特定的应用程序,我建议您使用 ASP.NET AJAX ComboBox< /a> 而不是自动完成文本框。
使用组合框,可以更轻松地触发更新面板的异步回发,然后将下拉列表绑定到数据库。
For this particular application, I suggest that you use a ASP.NET AJAX ComboBox instead of the Autocomplete Textbox.
With the ComboBox, it will be easier to trigger an async postback for your updatepanel and then bind the Dropdown list to the Database.