I have VS2008 and ASP.NET 3.5. I began converting an application to use the new ComboBox. In the process, I've come across two bits of design-time behavior that needs pointed out.
First, I write using "Code Behind".
After placing a ComboBox on a page and setting AutoPostBack to True, the "onSelectedIndexChanged" attribute does NOT automatically get appended to the markup when I either double-click on the ComboBox in design view or when I select "ComboBox1 - SelectedIndexChanged" in the drop-downs when viewing the code. The procedure is created in code but I run into a script error because the event was not added to the control.
Second, when NOT using Code Behind, I click on the drop-down to select the ComboBox control and several of the events DO NOT appear that appear in the cooresponding drop-down that appear when using Code Behind.
Minor problem but irritating to have to manually add the "onSelectedIndexChanged" to the ComboBox control to avoid the script error.
CC