I have the following tag with a Html.TextBoxFor expression and I want the contents to be read only, is this possible?
<%= Html.TextBoxFor(m => Model.E
Using the example of @Hunter, in the new { .. } part, add readonly = true, I think that will work.