25 Apr
2000
25 Apr
'00
3:32 a.m.
Kapil Thangavelu wrote:
short solution: you basically want to add some hidden variables to your form2 like <input type="hidden" value="<dtml-var row-items>" name="row-items>
This is essentially the correct answer, note that if row-items is a sequence then you have to be more clever: <dtml-in row-items> <input type=hidden name="row-items:list" value="<dtml-var sequence-item>"> </dtml-in> -Michel