How to select text in a disabled text box?
If you want to be able to select text, use the ReadOnlyattribute instead of disabling the control.
ReadOnly
Use readonlyinstead of turning it off.
readonly
Remove the attribute enabled=falseand add it to your code:
enabled=false
YourTextBox.Attributes.Add("readonly", "readonly");