0

我有这个观点,而且效果很好,坚持选择的国家:

<%: 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
    )
%>
4

1 回答 1

0

我会尝试这样的事情:

父视图中的代码:

 <% Html.RenderPartial("YourPartialView", Model) %>

编辑器视图中的代码:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<ModelFromParent>" %>
<%= Html.DropDownList(
    String.Empty /* */, 
    new SelectList(Model.Countries,"Id", "Title"), 
    "Select Country"
)

%>

我没有编译这个。但你得到了一般的想法。

于 2010-12-19T16:55:09.920 回答