I want to set the RadDatePicker
value to a value retrieved from my database
I have this code
DateTime Podate = Convert.ToDateTime(da.GetDataKeyValue("PoDt"));
RadDatePicker.SelectedDate =Podate;
but when I run this program the DatePicker
shows blank value
What should I do? Please help