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

2.6k Views Asked by At

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
Ahmed Atia On BEST ANSWER

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

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