I am trying to limit my textbox to include max 500 character, for example i want to receive a question from the user but it the max length is 500 and how can i show the number of how many character left while writing ?
this is my code in the view, but i don't know its not working, i have tried various ways!
<li>
@Html.LabelFor(m => m.TeacherQuestion, new { maxlength = 500 })
@Html.TextBoxFor(m => m.TeacherQuestion , new { maxlength = 500})
</li>