我有一个控制器DPN
,在该控制器中我有一个操作方法
[HttpGet]
public virtual ActionResult Report(string reportName)
{
str_ReportPath = string.IsNullOrEmpty(str_ReportPath) ? "/BundleDealer/" + reportName : str_ReportPath;
return View();
}
我想知道如何使用Report
将参数传递给Url.Action
我试过这个但是收到错误
<a href="@Url.Action(MVC.DPN.Report(), "AffiliateTFNDailySummary")">Provider</a>
答案 0 :(得分:1)
试试这个:
<a href="@Url.Action("Report", "controller name", new { reportName = "AffiliateTFNDailySummary" })">Provider</a>
答案 1 :(得分:1)
Url.Action("Report", "ControllerName", new { reportName = "AffiliateTFNDailySummary"});