如何在同一行显示2个Html Action Links,它们使用来自不同控制器的不同操作?我的代码是:
<th>@Html.ActionLink((item.Name + " & "), "Index", "Wedding") @Html.ActionLink("Invite Partner", "InvitePartner", "Account")</th>
这两个动作都显示在不同的段落中。如何在同一段落中显示它们?
编辑: 这是关于风格,我已经添加了引导类,它在同一段中显示为按钮:
<th>@Html.ActionLink((item.Name + " & "), "Index", "Wedding", new { @class = "btn btn-default"}) @Html.ActionLink("Invite Partner", "InvitePartner", "Account", new { @class = "btn btn-danger"})</th>