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. enter image description here

for more details on same bootstrap documentation here.


Comments

Popular posts from this blog

multithreading - Exception in Application constructor -

React Native allow user to reorder elements in a scrollview list -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -