我对ASP.NET MVC 1-5有很多经验。现在,我学习ASP.NET Core MVC,并且必须传递参数以链接到页面中。例如我有以下操作
[HttpGet]
public ActionResult GetProduct(string id)
{
ViewBag.CaseId = id;
return View();
}
如何使用标签助手来实现此操作的链接?
<a asp-controller="Product" asp-action="GetProduct">ProductName</a>