2016-11-04 101 views
0

我有一個控制器​​和控制器中我有一個動作方法如何將參數傳遞給操作方法

[HttpGet] 
public virtual ActionResult Report(string reportName) 
{ 
    str_ReportPath = string.IsNullOrEmpty(str_ReportPath) ? "/BundleDealer/" + reportName : str_ReportPath; 
    return View(); 
} 

我想知道我可以傳遞參數使用Url.Action 我想這Report但收到錯誤

<a href="@Url.Action(MVC.DPN.Report(), "AffiliateTFNDailySummary")">Provider</a> 

回答

1

試試這個:

<a href="@Url.Action("Report", "controller name", new { reportName = "AffiliateTFNDailySummary" })">Provider</a> 
1
Url.Action("Report", "ControllerName", new { reportName = "AffiliateTFNDailySummary"});