1
static public String Titl;    

现在用简单的编程语言假设我的表单上有一个下拉列表。当我调试时,我发现写入时 ID 为 dropdownlist1 的 dropdowlist

dropdownlist1.text; 

包含我在下拉菜单中选择的值。但是,当我做这样的事情时:

titl = dropdownlist1.text;    

我没有得到 title 变量中的值。需要帮助。谢谢你!

4

4 回答 4

3

如果你想要文字,请检查这个..然后

 title=dropdownlist1.selecteditem.text;

如果你想要价值然后

  title=dropdownlist1.selecteditem.value;
于 2012-08-03T07:43:46.983 回答
1
int selectedIndex=dropdownlist1.SelectedIndex;//get index
string selectedText=dropdownlist1.SelectedItem.Text;//get text
string selectedValue=dropdownlist1.SelectedItem.Value;//get value
于 2012-08-03T08:05:05.000 回答
0
 Titl = dropdownlist1.SelectedValue;

作品!谢谢你!

于 2012-08-03T07:47:58.773 回答
0
 Title = !string.IsNullorEmpty(dropdownlist1.SelectedItem.Text) ?
 dropdownlist1.SelectedITem.Text : "";
于 2012-08-03T07:44:29.157 回答