I want to be able to declaratively add rows to the beginning of the list in a WebCombo like I can to an ASP:DropDownList. In ASP.NET there is a property called AppendDataBoundItems that lets you append both static and dynamic rows to the drop down list. Can I do this with the WebCombo control? Microsoft defines the option as: "The AppendDataBoundItems property allows you to add items to the ListControl object before data binding occurs. After data binding, the items collection contains both the items from the data source and the previously added items."
John