inserting a Repeateritem

bopritchard

New member
Joined
Mar 6, 2007
Messages
2
Programming Experience
10+
I've got a repeater that has a couple of textboxes for data entry. There is also an ADD button that will insert a new repeater item for further data entry. Nothing gets written to the db until all items have been entered...
Question:
I need that ADD button to create that new repeater item and hold on to the previous repeater rows.
makes sense?

Example:
HTML:
<repeater>
Jack Smith - Truckdriver
</repeater>
when i click the add button I should now see

HTML:
<repeater>
Jack Smith - Truckdriver
textbox1 - textbox2
</repeater>
 
Last edited by a moderator:
Back
Top