On a form the submit button looks like this: <input type="submit" name="submit" value="Update" />
when this form is submitted using $w->submit_form ( fields => { fname => 'Foo', }); the field submit and its value Update does not seem to be sent to web server. If I add submit => 'Update', to the list of the fields, it silently ignores this field. In my case this causes the application to fail as it derives some state information from the value of the submit field. Using Firefox the submit=Update is sent to the server. How can I fix this? Gabor