On Fri, Aug 01, 2003 at 09:45:16AM -0700, Alex Li wrote: > So it is a form without a submit button, and because one input is > filled, the original form_submitted() will think the form is > submitted... I guess it's a matter of terminology. We consider that form submitted. It doesn't matter if the form was submitted without a submit button being pressed. There is other code in the form framework that depends on this definition. If you want to know if the form was submitted using a submit button, use: if form.get_submit_button(): HTH, Neil