我有以下问题:我调用控制器的方法,它接收一个参数。代码如下:
@Html.ActionLink("Preview", "ReportExecution", "Report", new { reportName = ViewBag.docLiquidation }, null)
这会为我生成以下地址:
http://localhost:65500/Report/ReportExecution/docRetentionDeclaration
docRetentionDeclaration 标识为参数,但没有。
该方法的代码如下:
[HttpPost]
public FileResult ReportExecution(string reportName)
{
.
.
return new File();
}
我很感激你能给我的帮助。