更新:
@using (Html.BeginForm("Index", "RSystem", FormMethod.Post, new { @id = "form_header" }))
{
<fieldset>
<legend>Person</legend>
@grid.GetHtml(htmlAttributes: new { id = "tblimportDevices" },
rowStyle: "webgrid-row-style",
columns: grid.Columns(
grid.Column(header: "Location", format: @<input type="text" id="Location" name="location_@(item.WebGrid.Rows.IndexOf(item))" value="@item.Location" style="width:250px;" />),
grid.Column(header: "Name", format: @<input type="text" id="Name" name="name_@(item.WebGrid.Rows.IndexOf(item))" value="@item.Name" style="width:250px;" />)
......more.....
))
<p>
<input type="submit" value="Save" />
</p>
</fieldset>
}
用户点击“保存”按钮(POST
)后,我在网格中显示数据。
我发布了整个表单,以便我可以使用键/值对读取网格数据。
我的问题是:
可以对FormCollection
键进行排序吗?原因是,当我阅读key/value
对时,我需要知道我阅读的最后一个键/值是什么,并且基于我已经做了某些操作。