[Zope] Passing paramaters ...

michael7669 michael7669@prodigy.net
Thu, 22 Feb 2001 12:32:21 -0800


Hi, I'm not sure if you are the right person to ask, but how on earth
does one go about passing form data outside one page and into another
(via javascript, if necessary)?  I had acquired this bit of code that is
supposed to accomplish this, but (as usual) it didn't work:

<form name=form1 action="" method=GET>
<input type=hidden name=pic value="http://www.anywhere.com/js/pic1.gif">

<input type=submit>
</form>

*** And the below code would be on the second page that is the action of
the above form:
<script>
_src =
unescape(document.location.toString().split("?")[1].split("=")[1]);
document.write("Image = "+_src+"<BR>");
document.write("<img src='"+_src+"' border=1>");
</script>

All I'm trying to do is have all thumbnailed images link to a single
html page that displays the related larger image (so I don't have to
have a mini page for every singe image file).  Any ideas/suggestions?
Thanks.

--Michael