How to reset Calendar Extender for Ajax Control Toolkit to its default value which should be empty string? Reset to be server side.

1

There are 1 best solutions below

0
On BEST ANSWER

You must reset both calendar extender and its target control (textbox).

        txtProductionDate.Text = string.Empty;
        calExtProductionDate.SelectedDate = null;