To get the selected Text from the dropdownlist TextBox2.Text = DropDownList1.SelectedItem.Text; To get the selected Value from the dropdownlist TextBox2.Text = DropDownList1.SelectedValue; (or) TextBox2.Text = DropDownList1.SelectedItem.Value; Regards,
Deepa