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();
}