0
我的查看頁面有一個由學生列表代表的模型。如何在ASP.Net MVC中將對象列表傳遞給[Post]控制器參數?
我想傳遞模型控制器參數:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult SendMail(List<Student> students)
{
.............
return View("Success",students)
}
我有Ajax.ActionLink嘗試這樣做:
<%= Ajax.ActionLink("Send Mail to list AT SCS", "SendMail", students = Model,
new AjaxOptions()
{
Confirm = "Are you sure you want to send mails?",
HttpMethod = "POST"
}
)%>
但是當我使用調試器在VS,我看到了列表是空的。 無法從視圖向控制器發送列表?如果不是,我該如何解決這個問題?
它的工作原理,謝謝! 我之前沒有接受答案,因爲直到現在我還沒有嘗試。 – andreiursan 2009-11-11 08:49:15