web-dev-qa-db-fra.com

Comment appliquer un style à asp.net mvc @ Html.TextboxFor?

Je veux changer le fond de la zone de texte. Ceci est mon code:

@Html.TextBoxFor(p => p.Publishers[0].pub_name)

Que faut-il de plus pour écrire dans TextBoxFor pour changer le fond?

24
TCM

Une surcharge de la méthode TextBoxFor vous permet de transmettre un objet pour les attributs HTML.

@Html.TextBoxFor(p => p.Publishers[0].pub_name, new { Class="YourBackgroundClass" })

Ensuite, vous pouvez avoir une règle CSS telle que:

.YourBackgroundClass { background:#cccccc; }

Si vous voulez appliquer un style directement, vous pouvez faire:

@Html.TextBoxFor(p => p.Publishers[0].pub_name, new { Style="background:#cccccc;" })
47
medkg15

Dans mon cas, j'ai aimé comme ci-dessous. J'ai l'application ASP.NET MVC et nous utilisons Bootstrap. J'ai donné float: laissé à tous mes éléments div. Je voulais juste montrer comment utiliser @style avec @class for @ Html.TextBoxFor

<div class="modal-body" style="height:auto; overflow-y:auto;max-height:500px;">
  <table style="width:100%" cellpadding="10">
     <tr>
       <td>
         <div style="display: inline; ">
            <label style=" float:left; margin-right:20px;">Login Name: </label>
            @Html.TextBoxFor(m => Model.UserPrincipalName, new { @id = "LoginName", @class = "form-control", @style = "float:left;margin-right:10px;margin-top:-5px;" })
            <a href="#" onclick="SearchActiveDirectoryByLoginName()" title="Search Active Directory" class="btn btn-primary" style="float: left; margin-top: -5px;">
                  @Html.Raw(" Search ")
             </a>
         </div>
       </td>
      </tr>
  </table>
</div>

 enter image description here

4
Ziggler

Maintenant, vous pouvez ajouter des attributs HTML comme ceci:

 @Html.EditorFor(p => p.Publishers[0].pub_name, new { htmlAttributes = new { @class = 
 "YourBackgroundClass" } })
0
N Iranshahi