直截了当,我认为只是找不到语法...
我有一个使用 id 属性的 ActionLink,
<td style="padding-right:35px">@Html.ActionLink("Edit", "EditUser", new { @id = user.ID.ToString("N") }, new { @class = "btn yellow"})</td>
基本上我想把它改成btn,但我不确定如何传递id参数,我认为它是这样的......
<button type="button" class="btn blue" id="user.ID.ToString("N")" onclick="location.href='ReferralTarget/EditUser'"><i class="icon-edit"> Edit</button>
ReferralTarget 是我的控件,EditUser 是我的 actionResult。请注意,这是一个使用 Razor2 视图的 ASP.NET MVC4 应用程序...