之前,如果你想從視圖中的數據發送到控制器的所有你需要的是做下一步: 1)從控制器發送數據到視圖。比如你要顯示的模型至極的內容列表
public ActionResult ShowList()
{
List<string> lst = new List<string>() {"1", "2", "3", ,"4"};
return View("MyListView", lst);
}
2)使用HTML傭工後綴顯示屏上查看此數據「爲」(例如,textBoxFor,hiddenFor,EditorFor,DisplayFor .. 。)並將其表單標籤
@model List<string>
<form action="GetDataFromView" method="post">
<table>
<tr>
<th>some header</th>
<tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(m=> item)
</td>
</tr>
}
</table>
</form>
3)控制器至極Write方法裏面會得到這些數據
public ActionResult GetDataFromView(List<string> model)
{
//do what you want with data sended from view to controller
// which stored in parameter model
return View("someView");
}
包含在問題的代碼不是鏈接。你的問題是什麼? – 2015-03-31 01:16:45
_「包含問題中的代碼而不是鏈接」_你不明白嗎? – 2015-03-31 01:36:50
我想包含代碼,但我沒有足夠的信譽來做到這一點 – 2015-03-31 02:04:04