假设我有一个简单的模型:
public class studentNames
{
string name{get; set;}
}
现在,如果我通过创建模式在视图中搭建它,则只会创建一个模型。我想在一个视图中创建多个对象。
就像是:
<form action="someAction">
Name of student1: <student1 name input box>
Name of student2: <student2 name input box>
<save button>
</form>
单击此按钮时,控制器中将返回一个列表,我可以将它们保存在数据库中。
我怎样才能做到这一点?提前致谢。