I have a string that is delimited. There are also strings delimited within this string. I want to use split/join to serialize and de-serialize this string so I can pass it in a hidden HTML input tag. Is there an easy way to use split/join to do this or does anybody have a better way to pass this data from page to page.
Right now I am using:
strField = join(request.form("hiddenfield","~"
<input typ=hidden value='<%=join(strField,"~"%>'>
Paul
Right now I am using:
strField = join(request.form("hiddenfield","~"
<input typ=hidden value='<%=join(strField,"~"%>'>
Paul