我的ComboBox
使用查询填充。我有SiloId
和SiloName
,因此ID
为combobox.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'/>";
}
中那样显示的文字。
我该怎么做?
答案 0 :(得分:2)
非常简单,使用combobox.Text;
。
答案 1 :(得分:1)
combobox.Text;
或
combobox.SelectedItem;