[Zope] Newbie question on page counters

Chris Withers chrisw@nipltd.com
Thu, 27 Jul 2000 23:25:58 +0100


Chris Withers wrote:
> To do what you want, you probably want something like:
> 
> <dtml-call
> "manage_changeProperties(counter_value=getProperty(counter_value,counter_starting_value-1)+1)">

Erk, maybe this:
 <dtml-call

"manage_changeProperties(counter_value=getProperty('counter_value',getProperty(counter_starting_value,0)-1)+1)">

Chris