Sharepoint DateTimeControl: set to null

How can I set the selected Sharepoint DateTimeControl to null? When you first load it onto the page, the value is not selected (even if the return value is not null, but you can check it with IsDateEmpty). How can I programmatically set it back to its initial, empty value?

thank

+5
source share
1 answer

Found.

myDateTimeControl.ClearSelection();
+10
source

All Articles