Click here to Skip to main content
Sign Up to vote bad
good
i have a dropdownlist which i am populating using visual studio extender i want to populate a textbox from that dropdownlist? how do i do that ?
Posted 4 Nov '12 - 3:50


1 solution

What ever said in the above solution is correct but there is noneed of accessing the database one more as we are having the required value in the dropdown list itself.
 
so the dropdown list event handler can be modified like this.
 

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
       TextBox1.Text=DropDownList1.SelectedItem.Value.ToString();
    }
If you are need of more information related to the user selection then you can access the database one more time.
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 208
1 OriginalGriff 203
2 Rohan Leuva 195
3 Abhinav S 168
4 Mahesh Bailwal 145
0 Sergey Alexandrovich Kryukov 8,474
1 OriginalGriff 6,714
2 CPallini 3,603
3 Rohan Leuva 2,853
4 Maciej Los 2,234


Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 5 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid