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 DropDownList and a function that gets what the value is selected but the SelectedIndex and the SelectedValue always return the first item.

The DropDown code is

<asp:DropDownList ID="lstApps" runat="server" DataSourceID="sqlDataSource" 
                        DataTextField="some_val" DataValueField="some_id"
                        TabIndex="5" >
</asp:DropDownList>

and the code (in a button click even of a button somewhere on the page)

int x = lstApps.SelectedIndex;

always returns 0 despite of what I might have selected. Is it due to auto postback being disabled or some other reason?

share|improve this question
2  
Please check if in page_load you are binding within ! (IsPostback) clause ? – V4Vendetta Jul 28 '11 at 6:00
just saw that. facepalm. – randomThought Jul 28 '11 at 6:01
I guess then that must have fixed your issue – V4Vendetta Jul 28 '11 at 6:11
Yes...................... – randomThought Jul 28 '11 at 6:13

1 Answer

up vote 2 down vote accepted

I guess! You need to use IsPostBack block in Page_Load event.

public void Page_Load()
{
  if(!IsPostBack) 
  {
     //put databinding code here.
  }
}
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.