本文介绍了如何使用DropDownList.text选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在研究Asp.NET项目,并且尝试使用文本属性设置下拉列表的选定值。例如,我在下拉列表中有一个文本为 test 的项目。我可以通过编程方式将其设置为文本 selecteditem 吗?我正在使用以下代码,但无法正常工作。

I am working on an Asp.NET project and I am trying to set the selected value of a dropdown list with a text property. For example i have i.e an item in the dropdown list with text test. Programmatically can i set it to selecteditem by Text?. I am using the follwing code but is not working.

protected void Page_Load(object sender, EventArgs e)
{
    string t = "test";
    drpFunction.Text = t; 
}

但不起作用。有任何建议吗?

But is not working. Any suggestions ?

推荐答案

 string t = "test";
 drpFunction.ClearSelection();
 drpFunction.Items.FindByText(t).Selected = true;

这篇关于如何使用DropDownList.text选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 13:42