Append the items to a dropdown control attached to a database

1

I have a dropdown control attached to a DB and wanted to add an item to force the user to choose an option.

How can I add another item (choose / select / --------) to the control in order to force the user to make the choice?

I have already tried to add through Edit Items... but it does not work.

    
asked by anonymous 04.06.2014 / 04:32

1 answer

1

At dropdownlist , change the property AppendDataBoundItems to True . The items you now add through Edit Items... will appear along with the items in the database.

    
04.06.2014 / 10:47