Hi All,
Loading Column data to dropdown in GridView
I am generating two column gridview one column is from table and one column is dropdownlist.
I want to load the column data for dropdownlist in gridview.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Mar 15, 2012, 12:10 AM
grid view has one event called Rowdatabound, this event is fired when your data bind with grid and it work per row.
In this eve you can bind you drop dowm with datasouce.
please refer below example.
http://www.codeproject.com/Articles/53559/Accessing-a-DropDownList-inside-a-GridView
hope this help.