我有一些方法
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 {cellSeparator =(int)CellSeparators.Semicolon})
原文链接:https://www.f2er.com/html/425877.html和
public ActionResult ExportToCSV(int cellSeparator)
{
CellSeparator separator = (CellSeparator)cellSeparator;
}
不优雅,但很有用