摘要:
问题可能是model里面声明的不是具有读写能力的属性。如:public class tempModel { public string aaa; }这样,页面上关联aaa的控件的值是传不回来的,就是model中aaa的值为null。要像下面这样:public class tempModel{ public string aaa{ get; set; }}把aaa声明为属性。同样地,如果是实体链表成员,实体的成员也只有属性成员能传回值,如:public class tempModel { public List<tempClass> templist { g... 阅读全文
posted @ 2013-06-18 22:35
striiiiing
阅读(411)
评论(0)
推荐(0)

浙公网安备 33010602011771号