我有这个观点,而且效果很好,坚持选择的国家:
<%: Html.DropDownListFor(model => model.CountryId, Model.CountryList ,"Select Country") %>
但是,当我为此创建编辑器模板时,选择的国家/地区不会保留
因此,我将当前的视图更改为:
<%: 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"],
Model
)
%>