这是我的表
ID TestCaseName
1 TestCycle1
2 TestCycle2
3 TestCycle3
在这里,我想选择ID
,在插入数据库时我想显示TEXT
,即TestCycle1
,我正在尝试此代码。
我已经尝试了下面提到的代码,在这里我得到了ID
我存储在一个属性中,而在DB中插入时我想要ID
的{{1要插入。
Text
现在插入数据库时,我想要private int TestCaseCycle;
public int TestCaseCycle_Value
{
get { return TestCaseCycle; }
set { TestCaseCycle = value; }
}
DefectManagement.TestCaseCycle_Value = Convert.ToInt32(ddlTestCycle.SelectedValue);
的{{1}},如何在数据库中插入选定的索引文本
答案 0 :(得分:0)
您可以简单地使用SelectedText
的{{1}}属性。你可以试试下面的东西。添加只读属性以过滤DropDownList
,然后您可以使用该属性保存到数据库中。
DropDownList
答案 1 :(得分:0)
选择的值是网络表单:
你想要ddlTestCycle.SelectedItem.Text