0
我有以下問題重定向視圖: 我撥打電話到控制器的方法,它接收一個參數。 的代碼如下:與Html.ActionLink
@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();
}
我欣賞的幫助,你可以給我。
當然,參數的名稱對應的路線。 [HttpPost] 公共FileResult ReportExecution(串所以reportName) – jorcast
'[HttpPost]'????你期望如何調用一個只接受帶謂詞的POST動詞的方法? –