[Zope] Passing paramaters for form processing

Kyler B. Laird laird@ecn.purdue.edu
Thu, 16 Nov 2000 09:19:00 EST


On Fri, 17 Nov 2000 00:50:50 +1100 you wrote:
>How do I set some parameters for use in a form processing method? I have a
>HTML "FORM" tag referencing a DTML method name, and I want that method to
>have visibilty of some variables from the calling methods space. I've tried
>passing them with the url (eg, "ACTION=/someurl?fred=<dtml-var blah>") and
>by using REQUEST.set syntax in the calling method. Neither seems to result
>in the variable being visible to the form processing method. Any ideas?

	<input type=hidden name="fred" value="<dtml-var fred>">

(Make sure that "fred" doesn't contain a double quote.)

--kyler