WebDatePicker readonly

how i can show data in readonly

My guess is that the WebDatePicker is Enabled = False, so to put a date on the control you need something like:

DatePicker1.SelectedDate = new DateTime(2027,1,3)

thanks