I have the following TextBoxFor
@Html.TextBoxFor(model => model.data, "{0:dd/MM/yyyy}", new { @class = "form-control", @alt = "date", @placeholder = DateTime.Now.Date.ToString("dd/MM/yyyy"), @maxlength = "10", @data_val="false"})
As you can see, there is a placeholder that defines what will be displayed on it when the screen is opened. My question is: How do I put today's date in the actual content of TextBoxFor? For example, when I open the screen without filling in the textBox it accuses it of being empty, that is, it is being displayed that today's date is set in the field but only visually.
Thank you.