Say I have a collection of phone numbers:
phonenumbers.add(new phonenumber("mobile", "1234"));
phonenumbers.add(new phonenumber("home", "5678"));
If I have 2 text boxes, txtMobile and txtHome, how do I bind each phone number to the individual text boxes?
Thanks!