asp.net - Adding an icon to a textbox in mvc5 -
i'm trying add icon text box in mvc5. i'm quite new asp.net , can't figure out how it. use <i class="fa fa-icon"></i>.
within input area, have:
@html.textboxfor(m=> m.emailaddress, new {@placeholder = "email address"}) any appreciated.
if using bootstrap asp.net mvc 5 (which default part of new mvc 5 application), can use bootstraps class achieve that
<div class="form-group has-success has-feedback"> @html.textboxfor(m=> m.emailaddress, new {@class="form-control" @placeholder = "email address"}) <span class="glyphicon glyphicon-ok form-control-feedback" aria-hidden="true"></span> </div> this code display success icon text box. below snapshot. 
for more details on same bootstrap documentation here.
Comments
Post a Comment