Edit items (hyperlinks) in a repeater with a single edit button

tombraider06

New Member
I've got a repeater which is bound to a List<> generated from an XML file. The file consists of two nodes, ID and Item. \[code\]<Items><ID>0</ID><Item><![CDATA[<a target='blank' href="http://www.cnn.com">CNN News</a> ]]></Item>\[/code\]I need to provide Edit functionality to allow a user to edit the url and the text of each item in the repeater. I don't want separate Edit/Save buttons for each row; too much clutter. I guess that means a single Edit/Save button, which would essentially result in the XML file being "created" anew on each Save. Or, might there be a better way to do this?I guess I'm asking two things: [*]A design suggestion on how to make a list of URLs editable (both url and text). Two separate text boxes I guess?[*]How to handle edits.Thanks.
 
Back
Top