Hopefully this is a very simple problem to solve, just that i'm not sure how to it....
How do you have an initial value in a dropdownbox, something like "Please Select Title" , rather than just the first record of the boxes datesource?
Cheers,
~Tom.
Printable View
Hopefully this is a very simple problem to solve, just that i'm not sure how to it....
How do you have an initial value in a dropdownbox, something like "Please Select Title" , rather than just the first record of the boxes datesource?
Cheers,
~Tom.
You can insert a value into the dropownlist's 0th value.....
<list>.Items.Insert(0, New ListItem("blah blah blah", "0"))
Thanks i'll give that a go
that worked fine, thanks