我有以下 ActionResults ,其中一个旨在替代接受 FormCollection 作为参数的另一个。
[HttpPost]
public ActionResult PartialAverageDisplay()
{
HomeModel C = new HomeModel();
ChViewModel D = new ChViewModel();
D = C.AverageCalculation();
return PartialView(D);
}
[HttpPost]
public ActionResult PartialAverageDisplay(FormCollection myFcollection)
{
HomeModel C = new HomeModel();
System.Data.DataTable myDT = new System.Data.DataTable();
myDT = (DataTable)Session["DT"];
ChViewModel D = new ChViewModel();
D = C.AverageCalculation(myDT, myFcollection);
return PartialView(D);
}
我一直无法在网上找到有关如何为需要 FormCollection 创建 actionfilter 属性的示例。我见过的所有东西都使用了一个字符串数组。我没有创建动作过滤器的经验。谁能向我解释如何解决这个问题?
谢谢