How to reset Calendar Extender for Ajax Control Toolkit to its default value which should be empty string? Reset to be server side.
views:
275answers:
1
A:
You must reset both calendar extender and its target control (textbox).
txtProductionDate.Text = string.Empty;
calExtProductionDate.SelectedDate = null;
Ahmed
2009-11-25 09:44:54