I need the current date to be loaded in the TextBox
; I'm doing it with the following code but when I run it, it does not load any date:
<td>
<label for="Fecha">Fecha:</label>
</td>
<td>
@Html.TextBoxFor(model => model.Facturas.Fecha, new { @class = "form-control input-sm", @Type= "date", value = System.DateTime.Today.ToShortDateString()})
</td>
I use C # MVC.