实现解决方案:一组复选框和与每个复选框关联的文本框

发布于 2024-11-27 08:14:34 字数 427 浏览 2 评论 0原文

首先,我对问题的标题感到抱歉,但我花了几个小时试图找出解决我的问题的方法,我真的不认为标题可以详细说明我正在尝试实现的想法,所以我希望可以在这里传达这个想法。

好的,现在我有一个创建袋子的页面。每个袋子都包含物品,并且应指定每个物品的数量。

CreateBagPage:我只需要一组复选框和与每个复选框关联的文本框。

CheckBoxes Text 属性将是项目的名称(从我的数据库表驱动)..如果我想将项目添加到包中,我选择复选框..我还必须指定每个项目的数量,这就是为什么我需要将一个文本框关联到每个复选框。还有一个小问题,这让我开始考虑创建一个 UserControl 并将其放入中继器中。问题是每个项目都有一个 ID,我需要通过它的 ID 保存该项目,并且 CheckBox 中没有可用的属性来接受 ValueField 之类的东西!

我希望我能在这里找到帮助..

First of all I'm sorry for the question's title, but I've spent hours trying to figure out something for my problem and I really don't think the title can elaborate the idea that I'm trying to implement so I hope I can deliver the idea here.

Ok, Now I have a page to create a bag .. each bag consists of items and quantity of each item should be specified.

CreateBagPage: I just need to have a set of CheckBoxs and a TextBox associated with each CheckBox.

the CheckBoxes Text property will be the name of the item (driven from my Db table) .. and if I want to add the item to the bag I select the checkbox .. I also have to specify a quantity for each item so that's why I need to associate a TextBox to each CheckBox. there's a little problem too, that made me start thinking about creating a UserControl and put it in a repeater. the problem is that each item has an ID and I need to I save the item through it's ID and there's no available properties in the CheckBox to accept sort of a ValueField or something!

I'm Hope I can find help here..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷清清 2024-12-04 08:14:34

您可以关联隐藏字段,将 Id 保存在其中,然后当您访问支票时,您可以从隐藏字段获取 Id

You can associate the hidden field, save the Id in that and then when you access the check and you can get the Id from hidden field

妄想挽回 2024-12-04 08:14:34

您可以为 TextBox 和 CheckBoxes ID 提供后缀 1..n(如 tb_1、cb_1),当选中复选框时,从其 ID 中解析数字 x 并找到 ID 为 tb_x 的控件。

You could give your TextBoxes and CheckBoxes IDs with suffixes 1..n (like tb_1, cb_1) and when a checkBox is checked, parse the number x out of its ID and find the control with ID tb_x.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文