how to pass parameter with @url.action to controller

前端 未结 1 2016
感情败类
感情败类 2020-12-11 00:47

i have following code snippet i want to pass data-id=\"0\" with my @url.action , how can i do this



        
相关标签:
1条回答
  • 2020-12-11 01:22

    If is was an ActionLink you would do this:

    @Html.ActionLink("View1", "Task", new {id=0}, null);
    

    So in your case, using Url.Action() it would be:

    href="@Url.Action("View1", "Task", new {id=0})"
    

    Which in your sample is:

    <a class="v-patient pointer" data-id="0" href="@Url.Action("View1", "Task", new {id=0})">View Patient</a></td>
    
    0 讨论(0)
提交回复
热议问题