M
Mark
I have a single XML file containing forty records, with no child nodes. For
example, imagine a list of people's names, and birthdates with SSN.
I'd like to find the row of a person with SSN of 123456789. What's the
quickest way to:
1. Load the file from disk.
2. Find the "record" I want.
3. Walk through the other "fields" in this record to get birthdate, first
name and last name for this person?
For example, should I load the file into a DataSet, or use the XMLDocument
class? I will NOT be binding the data to a DataGrid or similar.
Thanks in advance.
Mark
example, imagine a list of people's names, and birthdates with SSN.
I'd like to find the row of a person with SSN of 123456789. What's the
quickest way to:
1. Load the file from disk.
2. Find the "record" I want.
3. Walk through the other "fields" in this record to get birthdate, first
name and last name for this person?
For example, should I load the file into a DataSet, or use the XMLDocument
class? I will NOT be binding the data to a DataGrid or similar.
Thanks in advance.
Mark