我使用以下代码显示我的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,我想将所选值存储在数据字符串中。我该怎么做?
答案 0 :(得分:3)
您可以通过;
访问它string data = DropDownListnew.SelectedValue; // property not .Text property
答案 1 :(得分:1)
string data = DropDownListnew.SelectedValue;
答案 2 :(得分:0)
从DropDownList获取选定值的另一个属性。
string data = DropDownListnew.SelectedItem.Value;