I have an application that has the following line of code that works fine on one server:
if (chVal == true)
....
but on another server, this line will only work if it is written:
if (chVal = "True")
...
Does anyone have an idea why this would be true?