如何在FormCollection
中获取ActionMethod
的属性。表单包含许多输入,这些输入在逻辑上与data-*
属性分组。因此,根据data
属性,需要从FormCollection
获取元素。
例如:
<input type='text' data-group='GroupA' name='inp1' />
<input type='text' data-group='GroupA' name='inp2' />
<input type='text' data-group='GraupB' name='inp3' />
在行动方法
public ActionResult(FormCollection fc)
{
--how to fetch elements which are in GroupA alone
}
任何想法?