@Html.LabelFor(model => model.updateDate)
but this is transformed into <label for="updateDate">updateDate</label> and the value is not displayed just updateDate.
How can I display the value?
Try DisplayFor instead of LabelFor
@Html.DisplayFor(model => model.updateDate)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With