vote up 1 vote down star

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?

flag

79% accept rate
Just an idea: What if you use a space instead of a blank string? This could be a special value, or you could just trim it. – OregonGhost Sep 16 at 16:31
If you don't explicitly set a value then the value is set to that of the text property. – Dan Diplo Oct 24 at 17:15
Problem was I edited the items using visual studio editor. If you leave the value blank in the editor, it does not put Value="" into the code, which is what caused my problems. – SLC Oct 27 at 16:13

2 Answers

vote up 1 vote down check

You need to set Value=""

<asp:DropDownList id="DropDownList1" runat="server">
   <asp:ListItem value="" Text="ANY">
   </asp:ListItem>
</asp:DropDownList>

If you still have your bug just set the value to 0 or one letter

link|flag
vote up 1 vote down

You can have a blank value, you can reference it like this:

DropDownList1.SelectedValue;

OR

DropDownList1.Text;
link|flag
Doesn't the Text property get and set the same value that the SelectedValue property does? – Phaedrus Oct 24 at 16:09
You are correct, I just read the docs. I will edit the answer. – rick schott Oct 24 at 16:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.