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.

Is this possible? I programatically change the selected index when a certain event is fired using this code:

DropDownList.SelectedIndex = DropDownList.SelectedIndex + 1

Now I want to update a corresponding textbox with the text that is in the new SelectedIndex of the DropDownList via postback.

What's the easiest way to do this?


I know how I can do this in javascript.... I was just wondering if i could do this in the VB code behind.

share|improve this question

1 Answer

up vote 1 down vote accepted
TextBox.Text = DropDownList.SelectedValue;

Read more about ListControl.SelectedValue

share|improve this answer
Are you serious thats all i need? I don't need to somehow pass the selectedIndex with it? – Johnny Whisman Dec 9 '10 at 15:17
I think so. You could also do DropDownList.Items[DropDownList.SelectedIndex] – hunter Dec 9 '10 at 15:19
That's right -- you don't need the SelectedIndex to get the text. – Marcie Dec 9 '10 at 15:27

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.