I have a dropdown control, with some values I added in using the designer.
For example, "ANY", "Male", "Female".
The value for Male is set to M
The value for Female is set to F
The value for ANY is blank.
However, although it seems to be blank, I spent hours trying to debug a parse error...
And to my horror I discovered it wasn't blank at all! The value was set to "ANY".
I want the value to be blank, because my SQL query checks if the string is blank (or null).
My program breaks when it tries to put "ANY" into a varchar(1) for obvious reasons.
Am I doing something wrong? How can I make the default value blank?