How can I make my CompareValidator NOT case sensitive?
I have 2 textboxes. If textbox1.text ="THISISATEST" and texbox2.text = "thisisatest", the validator does not fire.
Printable View
How can I make my CompareValidator NOT case sensitive?
I have 2 textboxes. If textbox1.text ="THISISATEST" and texbox2.text = "thisisatest", the validator does not fire.
MSDN CompareValidator Info
When comparing Strings in a CompareValidator it always uses Case Sensitive comparisons.
Thanks. I'll look into it.