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>