If using a calendar extender to enter a date to a textbox, is there any way to disable direct typing to the textbox? I want to force users to use the calendar rather than typing over a date and thereby possibly entering a date with an incorrect format.
thanks
T
Theresa You can try with this
textbox.Enabled = false;
And you can set value with codeBehind
textbox.Text = yourCalendar.Value;