我有一个 View(FilerOverall) 并且在视图内我正在使用 renderaction 方法调用一些方法。
@{
Html.RenderAction("Gettemplate", "FinancialDisclosure",
new { FormId = "100",ScheduleId= "10" });
};
在控制器中我写了动作方法,比如
public ActionResult Gettemplate(string FormId ,string ScheduleId)
{
List<FDDTO> FD1 = FDService.GetScheduleDetails(100, 10).ToList();
return View ("EditorTemplates/FDDTO", FD1);
}
当我执行应用程序时,我收到此错误:
“在控制器 'WorldBank.DOI.Presentation.Controllers.FinancialDisclosureController' 上找不到公共操作方法 'Gettemplate'。”}