3

我有一种使用 C# 在 asp.net 中填充下拉列表的方法

public void get_country_box_populated(ref System.Web.UI.WebControls.DropDownList dropDown, bool add_initial_text)
{
    dropDown.Items.Clear();
    //dropDown.Items.Add(0,"Select Any Country");
    var context = new db_vmartEntities();
    var query = from c in context.tbl_countary
                where c.status == true
                select new { c.countary_id, c.countary_name };

    var dictionary = new Dictionary<int, string>();
    if (add_initial_text)
    {
        dictionary.Add(0, "Select Any Country");
    }
    foreach (var item in query)
    {
        dictionary.Add(item.countary_id, item.countary_name);
    }
    dropDown.DataTextField = "Value";
    dropDown.DataValueField = "Key";
    dropDown.DataSource = dictionary;  //Dictionary<int, string>
    dropDown.DataBind();
}

现在我需要在编辑页面上选择一个默认值,就像这样。

store_registration my_store = str.get_store_by_id(Session["user"].ToString(), sid);
c.get_country_box_populated(ref countary_box,false);
countary_box.Text = countary_box.Items.FindByValue(my_store.countary).ToString();

但未设置值,因为模式是这样的

Dictionary<key,value>
Dictionary<5,Pakistan>
Dictionary<8,India>
Dictionary<9,Iran>
Dictionary<6,UK>

如果我可以在 mystore.country 值为 6 时在下拉列表中设置 UK 的任何帮助或指导

4

2 回答 2

2

首先,您不需要ComboBox通过引用传递。

要选择DataBoudComboBox 的值,请执行以下操作:

countary_box.SelectedValue = my_store.countary_id; //im not 100% sure that this is the key, so change it to equivalent of item.countary_id

它会预先选择赋予价值。

于 2013-02-07T08:56:49.973 回答
0

我认为问题出在这一行:

countary_box.Text = countary_box.Items.FindByValue(my_store.countary).ToString();

在 ASP.NET 中,您可以SelectedValue通过a的Text属性DropDownList设置属性(如在 Winforms 中)。请注意区别,您通过 text 属性设置值。但ListItem.ToString返回文本而不是 value 属性。

所以你需要这个:

countary_box.Text = my_store.countary.ToString(); // if countary is the int which is used as key 

SelectedValue直接使用相同的:

countary_box.SelectedValue = my_store.countary.ToString();  
于 2013-02-07T08:59:56.170 回答