I am trying to make an actionlink like:
<li>@Html.ActionLink("Home", "Index", "Invoice", new { id = "homelink" })</li>
So, I have linkText, action name, controller name and link identifier.
However, there is no signature. The closest one has a route between the controller name and html attributes. I do not have any route values ββthat I need to add there.
Can someone please tell me how best to get around this?
source share