vote up 0 vote down star

hi. i have datatable with which contains all theses columns

columns  as  ID, NAME,PATH

i am binding the datatable to ID, Name in dropdown control. once the user selects a value of "name" in the dropdown . i'll get the ID of it . basesd on that then i need to get the corresponding path value in a string

thank you

flag

48% accept rate

1 Answer

vote up 1 vote down

Filtering datatable

DataView dtView = dtbl.DefaultView;
dtView.RowFilter = "[ID] <> 'ddlValue'";
value = dtView[0]["yourColumnName"].ToString();

where 0 is the rowIndex.

link|flag
now i am able to get the filter records it contains 1 row with 3 columns . now i need to assign these values into string what is syntax to do it – prince23 Nov 6 at 8:22
simply value = dtView[0]["yourColumnName"].ToString(); – Muhammad Akhtar Nov 6 at 9:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.