如何从aspx中删除选定的值?

时间:2012-08-23 18:08:58

标签: c# asp.net drop-down-menu

我使用以下代码显示我的aspx页面中的下拉列表,下拉列表中加载的数据是SqlDatasource4

 <asp:DropDownList ID="DropDownListnew" runat="server" 
     CssClass="ddlb" Width="210px" Height="30px" DataSourceID="SqlDataSource4" 
     DataTextField="OrderPeriod" DataValueField="OrderPeriodID">
 </asp:DropDownList>

当我尝试通过以下代码访问C#文件中的Dropdown数据时:

string data = DropDownListnew.Text;

它打印所选值的no,我想将所选值存储在数据字符串中。我该怎么做?

3 个答案:

答案 0 :(得分:3)

您可以通过;

访问它
string data = DropDownListnew.SelectedValue; // property not .Text property

答案 1 :(得分:1)

string data = DropDownListnew.SelectedValue;

答案 2 :(得分:0)

从DropDownList获取选定值的另一个属性。

string data = DropDownListnew.SelectedItem.Value;