I created a User Control which constructs a dropdown control dynamically. I'm trying to add whitespace between 2 parts of each entry as follows:
OperatorSelect.Items.Add(New ListItem(Value1 & " " & Value2, Value3))
This gets interpreted so that " " is displayed in the dropdown control(HTML comes out as  &nbsp.
How do I force whitespace to be added in the resulting HTML?
Thanks,
Rob
OperatorSelect.Items.Add(New ListItem(Value1 & " " & Value2, Value3))
This gets interpreted so that " " is displayed in the dropdown control(HTML comes out as  &nbsp.
How do I force whitespace to be added in the resulting HTML?
Thanks,
Rob