dynamic
如何将此 ( ) 表绑定到IList<IList<string>>
或其他类型
html:
@using (Html.BeginForm())
{
<table>
<thead>
<tr><th>column1</th><th>column2</th></tr>
</thead>
<tbody>
@for (int i = 0; i < 10; i++)
{
<tr><td><input type="text" value="@i" name="column1_@(i)"/></td><td><input type="text" value="@(Guid.NewGuid())" name="column2_@(i)"/></td></tr>
}
</tbody>
</table>
<input type="submit" value ="send"/>
}
我需要获取列和行
更新:
也许我可以拿 String[][]