输入提交控件的样式与@ html.ActionLink相同

时间:2014-09-18 07:58:15

标签: html css

我希望获得@ html.ActionLink&的相同风格。表单上的输入子控件(两个按钮)。我基本上希望输入控件看起来与ActionLink控件相同。

<div class="btn btn-success">
       @Html.ActionLink("RSVP Now", "RsvpForm")
</div>

enter image description here

<div class="btn btn-success">
   <input type="submit" value="Update RSVP" />
</div>

enter image description here

我希望底部按钮看上面的按钮

(btn btn-sucess来自bootstrap库)

2 个答案:

答案 0 :(得分:4)

<div>
    <input class="btn btn-success" type="submit" value="Update RSVP" />
</div>

答案 1 :(得分:0)

在Html.ActionLink方法的HTML Attributes参数中提供类。

<div>
       @Html.ActionLink("RSVP Now", "RsvpForm", new{@class="btn btn-success"})
</div>