Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a listBox in a asp.net web form. OnLoad i add items to the listbox and i add a OnSelectedIndexChanged event handler:

public void OnSelectedIndexChanged(object sender, EventArgs eventArgs)
{
    StreamWriter sw = new StreamWriter(@"C:\Users\me\Desktop\log.txt");

    sw.WriteLine(listBox.SelectedValue);

    sw.Flush();
    sw.Close();
}

The stream writer is so i can see the output...

I have AutoPostBack set to true on the listbox but everytime i select a new item it reloads the page but the print out is always the first item in the list instead of the item i clicked on. Anyone have an idea of what im doing wrong?

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

OnLoad runs every time the page is loaded. Check Page.IsPostBack to make sure you are only adding items to the list the first time you load the page. i.e.

if (!Page.IsPostBack) { FillMyListbox(); }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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