Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Saving multiple user input without overwriting existing data

Status
Not open for further replies.

deesooner

Programmer
Jan 5, 2006
3
US
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!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top