这是我的模型
namespace chPayroll.Models.CustInformations
{
public class CustContact
{
public int cId { get; set; }
public int cNoType { get; set; }
public string cNo1 { get; set; }
public string cNo2 { get; set; }
public string cNo3 { get; set; }
public List<CustContact> contact { get; set; }
}
}
这是我的编辑器模板
@model chPayroll.Models.CustInformations.CustContact
@Html.TextBoxFor(model => model.cNo1)
@Html.TextBoxFor(model => model.cNo2)
@Html.TextBoxFor(model => model.cNo3)
我需要显示三个用于接收电子邮件的文本框,三个用于接收电话号码的文本框。在视图中。如何将项目添加到模型中定义的列表联系人中,使其显示如下
email:--textbox1----textbox2----textbox3--
telephone:--textbox1----textbox2----textbox3--
并将值发送给控制器
实际上我正在尝试将我的数据发送到名为联系人的列表中,即在列表中
index 0-email1-email2-email3
index 1-tel1-tel2-tel3