我有一个表格需要填充2个模型.通常我在表单post post上使用ModelBinderAttribute,即
[Authorize] [AcceptVerbs("POST")] public ActionResult Add([GigBinderAttribute]Gig gig,FormCollection formCollection) { ///Do stuff }
但是在这种情况下,我有2个不同的模型需要填充.
我该怎么做呢?有任何想法吗?可能吗?