14
我正在尋找發佈字符串[]的解決方案/建議。我的模型(程序)將目標屬性(級別)定義爲字符串。我可以通過使用FormCollection來實現此目的,但是希望將該字符串[]右移到帖子的模型中。下面是摘錄:以mvc格式發佈數組
ProgramConotroller /創建
//
// POST: /Program/Create
[HttpPost]
public ActionResult Create(Program obj)
{
if(_service.CreateProgram(obj))
{
return RedirectToAction("Index");
}
// Add data to view data, remove if not necessary
AddToViewData(obj);
return View("Create", obj);
}
查看/創建
...
<p>
<label>Program Levels</label>
<%= Html.ValidationMessageFor(model => model.Levels) %> <br />
<% foreach (Level level in (IEnumerable)ViewData["ProgramLevels"]) { %>
<input type="checkbox" name="Levels" value="<%= level.Id %>" <%= CommonExtensions.isChecked(level.Id.ToString(), Model.Levels) %> /><%= level.Name %><br />
<% } %>
</p>
...
我應該知道在發帖前檢查Scott的博客......傻傻的我。 – gnome 2010-08-06 17:10:18