I have a strongly typed model and it is grabbing the display name from the Database 'startAmount' which I am sure is what it is supposed to do, but how do I override this?
I want it to appear as 'Starting Amount'.
<p>
@Html.LabelFor(m => m.IPACS_kpiHistory.startAmount)
<span class="field">
@Html.TextBoxFor(m => m.IPACS_kpiHistory.startAmount)
</span>
</p>
I've looked at all of the method options and none of them seem to have a display text override option?