使用硬编码值绑定下拉列表

时间:2012-02-06 20:06:11

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

我有一个带有硬编码值的下拉列表:

<asp:DropDownList ID="BulletinTypeDropDown" runat="server">
    <asp:ListItem Selected="True" Text="--Select--" Value="--Select--"></asp:ListItem>
    <asp:ListItem Text="News" Value="News"></asp:ListItem>
    <asp:ListItem Text="report" Value="report"></asp:ListItem>
    <asp:ListItem Text="System" Value="System"></asp:ListItem>
    <asp:ListItem Text="Reminder" Value="Reminder"></asp:ListItem>
</asp:DropDownList>

我想用它来插入和编辑db中的值。例如,当添加记录时,用户选择报告&#39;并且&#39;报告&#39;被插入到数据库中。然后,如果用户去编辑页面,因为数据库中的值是&#39;报告&#39;然后下拉列表必须显示&#39;报告&#39;被选中。 但我能够成功地将值存储在DB中,但我无法在编辑页面中检索所选页面。 我正在使用实体框架工作,所以我厌倦了很多方法,但无法在编辑页面中获得价值。 这是我尝试的方式。

DropDown.SelectedValue = bulList.intype.ToString(); // intype是我从DB获得的值,它返回当前值,但在DropDown.selectedvalue中传递null。

有人可以帮助我,我可以通过其他方式获取我的下拉列表中的值。

谢谢

4 个答案:

答案 0 :(得分:0)

您必须在下拉列表中找到该文本,并将selected属性设置为true 例如:

//pass the string you want to set selected to true --> assuming in your case bulList.intype.ToString()
BulletinTypeDropDown.Items.FindByText(bulList.intype.ToString()).Selected = true;

您也可以使用FindByValue执行类似操作。更多信息请访问:http://forums.asp.net/t/1004541.aspx/1

答案 1 :(得分:0)

BulletinTypeDropDown.SelectedValue = valueFromDb;

答案 2 :(得分:0)

因此下拉列表保持默认值,如果是这样,可能在页面加载中找到代码中的绑定方法。
否则,如果bulList.intype返回值,我认为下拉列表无法拒绝显示所选值。可以检查空格的返回值。试试这个:

string s =  = bulList.intype.ToString().Trim();
DropDown.SelectedValue = s;

答案 3 :(得分:0)

这是可能适合您的解决方案。 所以创建你的下拉列表。

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true" 
        onload="DropDownList1_Load" >
    </asp:DropDownList>


protected void DropDownList1_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        List<string> DDLlist = new List<string>();
        DDLlist.Add("Report");
        DDLlist.Add("News");
        DropDownList1.DataSource = DDLlist;
        DropDownList1.SelectedValue = "Report";
        DropDownList1.DataBind();
    }

您可以添加到牙医中动态添加新项目。