i have following code snippet i want to pass data-id="0" with my @url.action , how can i do this
<a class="v-patient pointer" data-id="0" href="@Url.Action("View1", "Task")">View Patient</a></td>
my task controller
public ActionResult View1(string id)
{
return View();
}
If is was an
ActionLink
you would do this:So in your case, using
Url.Action()
it would be:Which in your sample is: