我有办法

public ActionResult ExportToCSV(CellSeparators cellSeparator)
{
  //
}

public enum CellSeparators
{
   Semicolon,
   Comma
}

如何在HTML中正确地引用该方法?
@Html.ActionLink("Exportar al CSV", "ExportToCSV", new { ?? })

谢谢您!

最佳答案

@html.actionlink(“exportar al csv”,“exporttocsv”,new cellsparator=(int)cellsparaters.分号)

public ActionResult ExportToCSV(int cellSeparator)
{
  CellSeparator separator = (CellSeparator)cellSeparator;
}

不优雅,但有用

07-27 22:53