I use the razor view page and in the date time field. I want to display the placeholder, showing it in Firefox, but not showing it in chrome - mm/dd/yyyy.
Here is my code -
@Html.EditorFor(model => model.Date, new { htmlAttributes = new { @class = "form-control form-inline", @placeholder = "Date must be today or past date" } })


How can I solve this problem.
source
share