I have tried:
@Html.TextBoxFor(m => m.UserName, new {@class='textbox'})
which isn't working.
I have tried:
@Html.TextBoxFor(m => m.UserName, new {@class='textbox'})
which isn't working.
@Html.TextBoxFor(m => m.UserName, new {@class="textbox"})
c# string literal does not sigle quote.
'textboc' -> "textbox"