在 ASP.net 中选中复选框时使用中继器中的数据
我有一个中继器来显示我的数据。该中继器显示 2 个字段,其中一个字段是复选框控件,另一个字段是标签。
现在,当复选框被选中时,我如何理解标签的文本?
我想在复选框被选中的每一行中查看标签文本。
我该怎么办?
我使用 LINQtoSQL 从数据库获取和设置数据
I have a repeater for showing my data . this repeater showing 2 field that one of feild is checkBox Control and other is a lable.
NOW , how can I understand text of lable when the checkBox is Checked?
I want to see text of lable in evry row that the CheckBoxes is checksd.
how do I do?
I use LINQtoSQL for get and set data from database
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在回发时,您需要循环遍历中继器的每一行,并取出复选框控件。然后您可以访问它的 .Checked 和 .Text 属性。如果它是 .Checked,则将其添加到列表或数组中。如果需要我可以详细说明..
On postback, you need to loop through every row of your repeater, and grab out the checkbox control. Then you can access it's .Checked and .Text properties. If it's .Checked, then add it to a list or array. I can elaborate if needed..
页面...
后面的代码...
Page...
Code Behind...
当您分配数据时,代码隐藏
And code behind when you assign your data