asp.net – 在编辑模式下未选择的Html.DropDownListFor值

我成功地能够在插入时将值保存到数据库(标题值),但是当我在编辑模式下渲染相同的视图时,标题字段必须保持选定的值,但在我的情况下,没有通过标题下拉列表选择值…不知道为什么我在标题字段保存存储值(在后端)时没有选择任何内容的下拉列表.

@Html.DropDownListFor(model => model.title, new SelectList(Model.titles, "Value", "Text"),"-Select-") // nothing selected on edit mode

 @Model.title //displaying the stored value which the user selected initially.

标题值

titles = new SelectList(ListItem.getValues().ToList(), "Value", "Text").ToList();

getValue函数

 public static List<TextValue> getValues()
      {
    List<TextValue> titles= new List<TextValue>();
    TextValue T= new TextValue();


   T.Value = "Mr";
   T.Text = "Mr";
   titles.Add(T);

    T= new TextValue();
    T.Value = "Mrs";
    T.Text ="Mrs";
       titles.Add(T);

     T= new TextValue();
   T.Value = "Miss";
   T.Text = "Miss";
    titles.Add(T);

    T= new TextValue();
    T.Value ="Other";
   T.Text = "Other";
   titles.Add(T);


    return titles;

   }

最佳答案 你必须使用SelectList的另一个ctor

msdn

SelectList(IEnumerable, String, String, Object) 

Initializes a new instance of the SelectList class by using the
specified items for the list, the data value field, the data text
field, and a selected value.

然后 :

@Html.DropDownListFor(model => model.title, 
                      new SelectList(Model.titles, "Value", "Text", Model.title),
                      "-Select-") 

顺便说一句,遵循基本标准(至少)通常是一个好主意:您的属性应该以大写字母char开头.

public string Title {get;set;}
点赞