3 Mar
2004
3 Mar
'04
10:27 a.m.
Philip Kilner wrote:
if not request.has_key('the_key'):
Try: if not request.form.has_key('the_key'): ...if you're worried about for mvariables or URL parameters. Otherwise: value = request.get('the_key'): if value is not None: cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk