Always get incorrect data from readonly textbox when you use Calendar Extender?
To fix this:
To fix this:
- Set readonly in Textbox property to False
- Use the following code in PageLoad Event protected void Page_Load(object sender, EventArgs e) {
- TextBox1.Attributes.Add("readonly", "readonly");
- }