I need to pass a list through a url. Is there anyway to do it? I receive a list from a DTML document and I need to pass it again to a method. I have verified that the intermediate document receives a list but when the last method retrieves it the type is string. I can cast it to be a list by : <dtml-call "RESPONSE.redirect('Destination?myList:list'+`myList`)"> but <dtml-var mylist> renders ["[x]"] where I have a list containing a string. Any ideas? Thanks Belen
belen@netcom.no wrote:
I need to pass a list through a url. Is there anyway to do it?
...
but <dtml-var mylist> renders ["[x]"] where I have a list containing a string.
Any ideas?
This may not be the ideal way, but it works. <s> I re-created another list in the request space, by iterating through the first list. I send a couple of hundred items this way and it doesn't seem to hurt performance. YMMV though. PS. If you find a cleaner way, please post it to the mailing list. :-) -- Tim Cook, President - FreePM,Inc. http://www.FreePM.com Office: (731) 884-4126 ONLINE DEMO: http://www.freepm.org:8080/FreePM
participants (2)
-
belen@netcom.no -
Tim Cook