I am using Bootstrap Date picker in MVC c# application. I've bind date picker with current date. Format of date picker is dd/mm/yyyy.
Jquery
$(".datepicker").datepicker({
format: "dd/mm/yyyy",
autoclose: true
});
Razor
@Html.TextBox("AppointmentDate", @Model.NewAppointmet.Appointment_Date.Value.ToString("dd/MM/yyyy"), new { @class = "form-control datepicker", placeholder = "Appointment Date", id = "AppointmentDate" })