Hi! Currently I have 12 textboxes which the user will enter the name and age. 6 textboxes for names and 6 for ages.

I want to use only one textbox instead of 12 textboxes. I'll use the multi-line line of the textbox and want to user to just input the name and beside it, is the corresponding age of the name so that i will not be limited to just 6 names.
Example:
John Doe 12
Carl Vincent 13
Mary Tuesday 12
etc..

My Problem is, how do I save the values in my table but split the name in one namefield and the other to agefield?

I want also to let the user to query my table and display the names and ages in the same textbox the user used to enter those values.

How do I do this? Any sample code will be of great help. Thanks!