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>