は、私は非常に強く、ビューモデル、強く型付けされたビューとエディタのテンプレートを使用して、あなたをお勧めします。
だから、いつものようにあなたのビューが必要になる場合があります必要なすべてのデータが含まれていますビューモデルを定義することによって開始します。その後、
public class CanalViewModel
{
public string Name { get; set; }
public bool Selected { get; set; }
}
コントローラ:
public class HomeController : Controller
{
public ActionResult Index()
{
var model = new[]
{
new CanalViewModel { Name = "canal 1", Selected = false },
new CanalViewModel { Name = "canal 2", Selected = true },
new CanalViewModel { Name = "canal 3", Selected = false },
new CanalViewModel { Name = "canal 4", Selected = false },
};
return View(model);
}
[HttpPost]
public ActionResult Index(IEnumerable<CanalViewModel> model)
{
return View(model);
}
}
をし、次の~/Views/Home/Index.aspx
ビューが来ます:
<%@ Page
Language="C#"
MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewPage<IEnumerable<AppName.Models.CanalViewModel>>"
%>
<% using (Html.BeginForm()) { %>
<%= Html.EditorForModel() %>
<input type="submit" value="OK" />
<% } %>
最後に、運河用のエディタテンプレートが必要ですどのモデル(~/Views/Home/EditorTemplates/CanalViewModel.ascx
)の各要素に対して実行されます:あなたがフォームを送信する際
<%@ Control
Language="C#"
Inherits="System.Web.Mvc.ViewUserControl<AppName.Models.CanalViewModel>"
%>
<div>
<%= Html.HiddenFor(x => x.Name) %>
<%= Html.CheckBoxFor(x => x.Selected) %>
<%= Html.LabelFor(x => x.Selected, Model.Name) %>
</div>
さて、POSTアクション内で、あなたは自分の選択したプロパティは、どのチェックボックスに応じているとともに、すべての運河のリストを取得しますユーザーが選択します。
ご覧のとおり、ViewDataには醜いキャストを実行する必要があり、ビューにはforeach
ループを書く必要はありません。すべては、よく確立された規則に従い、フレームワークによって自動的に処理されます。