or use name="date2:date" in the input form. -aj --On Mittwoch, 8. Oktober 2003 23:25 Uhr -0700 Dylan Reinhardt <zope@dylanreinhardt.com> wrote:
On Wed, 2003-10-08 at 23:15, K. Praveen Kumar wrote:
<input type="text" name="date2" size="15" value=""> <snip> <dtml-call "REQUEST.set('date2',date2.strftime('%Y/%m/%d'))">
Unless I'm misreading, your problem is that date2 is a string and therefore doesn't have a strftime() method. But your traceback probably told you *that* much. :-)
To fix this, convert the string to a date using strptime(). If you're on Win32, you may not have strptime() and may need to find one of the many third party implementations available online.
HTH,
Dylan
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )