The Editor does not remember the selected item of a Select Element in IE.
You can see this behavior in action by pasting the below html in the html view then switch to design view.
| <select id="Select1" name="Select1"> |
| <option value="ACT">Australian Capitol Territory</option> |
| <option value="NSW" selected="true">New South Wales</option> |
| <option value="NT">Northern Territory</option> |
| <option value="QLD">Queensland</option> |
| <option value="SA">South Australia</option> |
| <option value="TAS">Tasmania</option> |
| <option value="VIC">Victoria</option> |
| <option value="WA">Western Australia</option> |
| </select> |
In design view it will have the 2nd item correctly selected, but if you switch back to html view it will automatically select the first item.
The Content property will also have the first item selected, regardless of what item is selected in design view.
Firefox did not have any problems remembering which item was selected.
Is there a way to make IE remember which item was selected?