I'm trying to use @Html.ValidationMessageFor() for displaying errors in MVC,
and I'm trying to do something like: @Html.ValidationMessageFor(@ViewBag.Price) but I get syntax errors.
I want validation for this input:
input type="number" value="@ViewBag.Price" name="CurrentPrice"
@ViewBag.Price? How do you want to display a validation message for a viewbag value? What are you trying to achieve? – nemesv Feb 11 at 20:44@Html.ValidationMessageFor(m=>m.CurrentPrice)– karthik Feb 12 at 10:05