Theme: Popup:

TextBox with placeholder

    <%:Html.Awe().TextBoxFor(o => o.Name)
.Placeholder("type here...") %>

Numeric Textbox, 3 characters max

    <%:Html.Awe().TextBox("Number")
.Placeholder("only 3 numbers here")
.Numeric(true)
.MaxLength(3)
%>