I am looking for instructions on how to save multiple entries of data into xml tags without overwriting the existing data using VB .Net 2003.
ex. Xml Form
<Names>
<first>Bob</first>
<middle>James</middle>
<last>Smith</last>
</Names>
This is all based on a web form that would ask for this information. But how do you use xml to collect multiple <Name />'s without overwriting the existing <Name />?
ex. xml Form
<Names>
<first>Bob</first>
<middle>James</middle>
<last>Smith</last>
</Names>
<Names>
<first>Betty</first>
<middle>Lou</middle>
<last>Harper</last>
</Names>
Thanks for the help!
ex. Xml Form
<Names>
<first>Bob</first>
<middle>James</middle>
<last>Smith</last>
</Names>
This is all based on a web form that would ask for this information. But how do you use xml to collect multiple <Name />'s without overwriting the existing <Name />?
ex. xml Form
<Names>
<first>Bob</first>
<middle>James</middle>
<last>Smith</last>
</Names>
<Names>
<first>Betty</first>
<middle>Lou</middle>
<last>Harper</last>
</Names>
Thanks for the help!