Hi All,
I am binding dataview to listbox. How to get the selected item.
Geetha
Hi All,
I am binding dataview to listbox. How to get the selected item.
Geetha
Hi Achraf,
Thank you for the reply. I got the solution.
Code:
DataRowView dv = lbResult.SelectedItem as DataRowView;
string xx= dv.Row[1].ToString();
Geetha.