ListBox 选择的值错误,如何获得正确的值?

发布于 2024-11-26 17:54:50 字数 162 浏览 1 评论 0原文

我现在有一个包含以下项目和值的列表框。

项目,杂项。费用/税金/人工费

值,50.00/50.00/100.00

问题是当我选择税金项目时,它会将其变成杂项。收费是因为它们具有相同的价值。如果值相同,是否可以让列表框获得正确的项目和值?

谢谢你!

I have a listbox that has the following items and values right now.

Items, Misc. Charge/Taxes/Labor Charges

Value, 50.00/50.00/100.00

The problem is when i select the taxes item, it will turn it into Misc. Charges because they have the same value. Is it possible to have the listbox get the correct item and value if the values are the same??

Thank you!

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

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

发布评论

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

评论(1

彻夜缠绵 2024-12-03 17:54:50

使用 value 属性作为唯一 ID(miscCharge、Taxes),使用 text 属性作为向用户显示的内容(50.00、50.00)。

<asp:ListItem value="item1" Text="50" Selected="True"></asp:ListItem>
<asp:ListItem value="item2" Text="50"></asp:ListItem>

ListItem selectedItem = list1.SelectedItem;
string id = list1.SelectedItem.Value;
string text = list1.SelectedItem.Text;

Use the value attribute as the unique id (miscCharge, Taxes) and the text attribute as what is displayed to the user (50.00, 50.00).

<asp:ListItem value="item1" Text="50" Selected="True"></asp:ListItem>
<asp:ListItem value="item2" Text="50"></asp:ListItem>

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