Search code examples
.nettextboxcalendarasp.net-ajax

make textbox data entry by calendat extender only - ASP.NET 4.0, C#


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


Solution

  • Theresa You can try with this

    textbox.Enabled = false;
    

    And you can set value with codeBehind

    textbox.Text = yourCalendar.Value;