我有以下代码来设置选择列表的默认值:

public ActionResult Register()
{
    IList<Country> countryList = _countryRepository.GetAllCountry();

    var registerViewModel = new RegisterViewModel
    {
        CountryId = 52,
        CountryList = new SelectList(countryList, "CountryId", "CountryName", "Select Country")
    };

    return View(registerViewModel);
}

我认为这很有效,并且可以很好地将所选国家/地区的值设置为52:
<%: Html.DropDownListFor(model => model.CountryId, Model.CountryList ,"Select Country") %>

但是,当我为此创建编辑器模板时,未选择国家/地区的默认值

因此,我将当前 View 更改为:
 <%: Html.EditorFor(model => model.CountryId,new { countries = Model.CountryList}) %>

然后,我像这样创建编辑器模板:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.Int64?>" %>
<%= Html.DropDownList(
        String.Empty /* */,
        (SelectList)ViewData["countries"],
        "Select Country"
    )
%>

最佳答案

我已经通过将 Controller 中的代码替换为来解决了这个问题:

CountryList = new SelectList(countryList, "CountryId", "CountryName",52 /*Default Country Id*/)

如果您有更好的解决方案,请告诉我。我将更改接受的答案。

10-06 04:43
查看更多