I want to following html code using asp.net mvc 3 razor html helper:
<input type="text" .... . placeholder="Login" data-icon="user" />
I have try this one:
@Html.TextBoxFor(m => m.UserName, new { placeholder = "Login", data-icon = "user" })
or
@Html.TextBoxFor(m => m.UserName, new { placeholder = "Login", @data-icon = "user" })
Displayed Error:
Invalid anonymous type members declaration.
This might due to dash in data-icon not taken as attributes. How could I add data-icon attributes in text box field.