I have a xml database with the following format:
<Students>
<Student ID= *GUID NUMBER*>
<FullName>John Smith</FullName>
<Address>Blah blah blah</Address>
and so on...
<Student ID= *GUID NUMBER*>
<FullName>Joe Blow</FullName>
<Address>Blah Blah</Address>
and so on...
I have a combobox that will select from this xml data to display the FullName in its dropdown. Now what I need to do is have other fields to update and add nodes to the chosen Student based on what FullName is chosen in the combobox, once another button - "Submit" is pressed.