Hi...
I am trying to retrieve value in a grid view that I was selected from a combo box. How can I do this, anyone have a solution to solve this problem.
Loading
Hi...
I am trying to retrieve value in a grid view that I was selected from a combo box. How can I do this, anyone have a solution to solve this problem.
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.
Vijay YadavPosted Jul 16, 2011, 11:38 AM
Manoj TandonPosted Jul 16, 2011, 10:53 AM
Jiteendra SampathiraoPosted Jul 8, 2011, 1:45 AM
set the autopostback=true propertyto the combo box...
In the combo box event...
store the combo box selected value in a variable....
write the select query like...
select a,b,c,d from dat_table where some-thing=a;
write some method to store the retrieved values in a DataSet.....and then to GridView
Refer this link for More understanding(code available)
Link
Hope it help....