Get Multiple Child Element Data via XPath

PeterP

New Member
Can we get multiple elements from XML document via XPath ?I've XML document with below structure:\[code\]<myclass><subject id="CS-101"><title>Analysis of Algorithm</title><credithours>3</credithours></subject><subject id="CS-101">..</subject>..</myclass>\[/code\]What I want is to search subject title and get all the subject with same title in DataGridView. Is this possible to get values of multiple elements with on parent element and add thme to DataTable or DataView ?
 
Back
Top