0

DropDownList我的Asp.net中发生的奇怪行为

我的代码:

                 <asp:DropDownList ID="DDLFromMinutes" runat="server" Width="20%">
                                <asp:ListItem Text="00" Value="00"></asp:ListItem>
                                <asp:ListItem Text="15" Value="15"></asp:ListItem>
                                <asp:ListItem Text="30" Value="30"></asp:ListItem>
                                <asp:ListItem Text="45" Value="45"></asp:ListItem>
                            </asp:DropDownList>

但是,当我运行它时,例如,如果 15 是选定值,我会在我的DropDownList

在 FireBug 中调试时得到以下信息:

<select id="ContentPlaceHolder1_DDLFromMinutes" style="width:20%;" name="ctl00$ContentPlaceHolder1$DDLFromMinutes">
<option value="00" selected="selected">30</option>
<option value="15">15</option>
<option value="30">30</option>
<option value="45">45</option>
</select>

后面的代码:

string Frominput = seprateFromTime[1];
                string Frommin = Frominput.Substring(0, 2);
                DDLFromMinutes.SelectedItem.Text = Frommin;
                if (DDLFromMinutes.Items.Count > 0)
                {
                    DDLFromMinutes.SelectedIndex = DDLFromMinutes.Items.IndexOf(DDLFromMinutes.Items.FindByText(Frommin));
                }

在此处输入图像描述

保存数据时使用DDLFromMinutes.SelectedItem.Text这可能是一个问题吗?

4

2 回答 2

1

您需要使用 MyDropDown.SelectedValue 而不是 selectedItem.Text。

详细信息:MSDN

于 2013-02-14T06:04:30.623 回答
0

你想得到下拉列表的值吗?如果是这样,我认为您需要将 SelectedItem 更改为 SeletedValue。

于 2013-02-14T06:23:48.347 回答