@Html.EditorFor(model => model.Name, new { disabled = "disabled " })
@Html.EditorFor(model => model.Name, new { disabled = "" })
就可以了。
@Html.EditorFor(model => model.Num, new { htmlAttributes = new { @class = "form-control", @readonly = "readonly" } })