MVC4允许用户编辑列表项

时间:2013-02-01 14:04:58

标签: list asp.net-mvc-4

在视图模型中,我有以下列表:

public List<Foo> ListOfFoos { get; set; }

班级Foo具有以下属性:

public int id {get; set;}
public string name {get; set;}
public int number {get; set;}

我可以使用Foo循环输出ListOfFoos属性中的每个foreach对象。我希望能够在提交表格时提交已编辑的值。

有办法做到这一点吗?新值是否只存储在ListOfFoos列表中?

1 个答案:

答案 0 :(得分:0)