>Thane Sherrington wrote:
>(Of course, you'd want to save the original list so you could start over
>once you had finished one pass through the list.)
>
>How do I save the original list?
First create your list, then do something like:
<cfset BackupList=TheList>
That will give you two lists, each identical.
Each time you loop through TheList variable and delete a list item, you can
check and see if there is anything left - if TheList is empty, recreate it
from BackupList.
<cfif ListLen(TheList) EQ 0>
<cfset TheList=BackUpList>
</cfif>
T
Tired of your bookmarks/favourites being limited to one computer? Move
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your
favourites in one place and
access them from any computer that's attached to the Internet.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

