It looks like this is caused by the way you add the items to your drop-down list.
Right now, ever time the page loads, you add your items. This means that when the page is posted back, the items are added again, clearing out the SelectedItem.
Wrap the code that adds the items in a !IsPostBack block:
if (!IsPostBack)
{
// Add items here
}
else
{
// Items have been added and should still be there.
}
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to:
Don't Ever Get Tired by
Tindersticks (Track 6 from the album:
Can our love...)
What's This?