ModelBinding asp.net MVC List我被回答如何綁定一個創建操作。但是如何在編輯操作中將相同的Movie類與它標記屬性綁定?綁定關於這個問題Asp.Net MVC
因爲當我這樣做:
public ActionResult Edit(string movieid)
{
if(!string.IsNullOrEmpty(movieid))
{
ViewBag.Edit = true;
var movie= db.GetCollection().FindOne(new { Name = movieid});
if(movieid== null)
throw new HttpException(404, "Movie not found");
return View(movie);
}
return RedirectToAction("Index","Home");
}
在在輸入文本查看我得到:System.Collections.Generic.List`1 [System.String]
我如何綁定列表到輸入文本,在視圖的呈現?
謝謝!
什麼是您查看的第一行? – 2011-06-05 05:17:27
請分享您的觀點代碼 – 2011-06-05 06:47:54