I have a number of applications where I want to have many
onclick='submit ()' attached to different 'elements' on a single form
..... which sends the form to a CGI "script" which does all the
validation. The problem is.. how can I code the submit()s so the CGI's
form collection knows which 'element' was clicked??
I am NOT permitted to use <input type=image...> or any "button" that
browsers produce for forms.... the reasons are all client related
;o)))
If I can put a string inside the parentheses (i.e.
onclick='submit ("thisbutton")' .... and have it's characters included in
the POST information to the CGI.. It will work for me. Can this be
done?? how?
onclick='submit ()' attached to different 'elements' on a single form
..... which sends the form to a CGI "script" which does all the
validation. The problem is.. how can I code the submit()s so the CGI's
form collection knows which 'element' was clicked??
I am NOT permitted to use <input type=image...> or any "button" that
browsers produce for forms.... the reasons are all client related
;o)))
If I can put a string inside the parentheses (i.e.
onclick='submit ("thisbutton")' .... and have it's characters included in
the POST information to the CGI.. It will work for me. Can this be
done?? how?
Comment