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

how to insert data php javascript mysql with multiple array session 2 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -