MVC3 EditorFor readOnly
The EditorFor html helper does not have overloads that take HTML attributes. In this case, you need to use something more specific like TextBoxFor: <div class=”editor-field”> @Html.TextBoxFor(model => model.userName, new { disabled = “disabled”, @readonly = “readonly” }) </div> You can still use EditorFor, but you will need to have a TextBoxFor in a custom … Read more