如何在查询填充时使用组合框中显示的文本

时间:2015-07-22 09:41:48

标签: c# sql combobox

我的ComboBox使用查询填充。我有SiloIdSiloName,因此IDcombobox.ValueMember,名称为combobox.DisplayMember

通常我选择ID时需要combobox.SelectedValue。 (ComboBox) 但现在我需要像foreach ($foo as $thing) { $HTML = " <input type='text' value='$thing->position' name='newPosition[]'/> <input type='hidden' value='$thing->id[]' name='id'/>"; } 中那样显示的文字。

我该怎么做?

2 个答案:

答案 0 :(得分:2)

非常简单,使用combobox.Text;

答案 1 :(得分:1)

combobox.Text;

combobox.SelectedItem;