vote up 0 vote down star

I am using Ajax enabled page and I did't use any control in this page. Even then SelectedIndexChanged event is not firing. I have added items from database, there is no repeatation and also set autopost back propety="true". I want to add items from database when select one item the selection always shows first element and selectedchanged event is not working.

flag

1 Answer

vote up 0 vote down

Are you rebinding the drop down list after the postback?

Make sure your page level codebehind has the following conditional:

if (!IsPostBack)
{
    // bind my drop down list
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.