I need that in this field I have the date I sent from the view of C #
I have the following line of code in the view of c #, but it does not work for me:
<td>
<label for="FechaVencimiento">Fecha Vencimiento:</label>
</td>
<td>
@Html.TextBoxFor(model => model.Facturas.FechaVencimiento, new { @class = "form-control input-sm", @type = "Date", @required = 1, date = Model.Facturas.FechaVencimiento })
</td>
Which label should I use in the c # view to send the date correctly and load it in the browser?