选择asp.net列表框中的所有项目
如果单击复选框,我需要选择 ASP.NET 中列表框中的所有项目...
单击“全选”复选框后如何显示列表框中所有选定的项目
if checkbox is clicked i need to select all items in the listbox in asp.net...
how to show the items all selected in listbox once the 'selectall' checkbox is clicked
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在复选框的
CheckedChanged
事件处理程序中,迭代列表中的所有项目并将所有项目的 Selected 属性设置为 true。您还需要确保在列表框中启用了多重选择。使用以下命令来执行此操作:In the
CheckedChanged
event handler of the checkbox, iterate through all the items of the list and set the Selected property for all as true. You also need to make sure that the multi selection is enabled on your listbox. Use the following to do that:您可以将 OnClientClick 属性与 ASP.NET 列表框一起使用来触发选择所有项目的 JavaScript 函数。
如果您的 ASP.NET 列表框在服务器上运行,您应该在 Javascript 中使用以下命令引用它:
You can use the attribute OnClientClick with your ASP.NET Listbox to fire a javascript function that selects all items.
If your ASP.NET Listbox runs on the server, you should refer it in your Javascript using: