如何将boostrap样式应用于.aspx视图?

时间:2018-05-03 16:40:36

标签: asp.net aspx-user-control

需要在视图中的mi DropDownList 中应用 boostrap 样式,而不是我的模型

<% using (Html.BeginForm(FormMethod.Post))
    { %>
<%: Html.ValidationSummary(true) %>
<div class="form-group">
    <div class="row">
        <div class="col-md-6 text-right">
            Pais:
        </div>
        <div class="col-sm-6">
            <%: Html.DropDownList("CodPais", String.Empty)  %>
            <p class="label label-danger"><%: Html.ValidationMessageFor(model => model.CodPais) %> </p>
        </div>
    </div>
</div>
<% } %>

某人有关于如何在visual .aspx中应用bootstrap的文档

我尝试:

enter image description here

0 个答案:

没有答案