Re: [Zope] REQUEST object - obtaining variables from

2001-01-15 Thread Lee
Hi there, Thanks for your help. I'm currently using the following code, which works perfectly; dtml-in expr="REQUEST.form.items()" dtml-let text="_['sequence-key'] + 'x' + _['sequence-item']" dtml-call expr="updateDB(text)" /dtml-let /dtml-in Randy's response provided the

[Zope] REQUEST object - obtaining variables from

2001-01-13 Thread Lee
Hi, I am having some problems with the REQUEST namespace/object. I understand that if I submit form data then it can be retrieved using the REQUEST object. I have looked at Chapter 7 (Advanced DTML) for support but I'm still no closer to success. I have a DTML method, which passes an unknown

Re: [Zope] REQUEST object - obtaining variables from

2001-01-13 Thread Jens Vagelpohl
here's how you could display the form variables on the receiving object: tested dtml-in expr="REQUEST.form.items()" dtml-var name="sequence-key": dtml-var name="sequence-item"br /dtml-in /tested REQUEST.form will contain all the fields from the form and REQUEST.form.items() will give you