I have the following property within a user control:
public DateTime? Value
{
get
{
return DatePickerInput.SelectedDate;
}
set
{
DatePickerInput.SelectedDate = value;
}
}
This selects dates in the following format 01-Feb-2012. I want to change the format so it returns dates in the format dd/MM/yy...how is this possible?