In the column name of the model class public int? CTScore { get; set; }and in the Razor view, I want to use this as @Html.EditorFor(model => model.CTScore).
It appears as an editor window along with the up / down arrow buttons, but I do not need to show these spin buttons. How to do
Any help is appreciated.
source
share