InterviewSolution
Saved Bookmarks
| 1. |
Can I Have Two Or More Actions In The Same Form? |
|
Answer» No. A form must have EXACTLY one action. However, the server-side (e.g., CGI) program that processes your form submissions can perform any number of tasks (e.g., UPDATING a database, sending email, logging a TRANSACTION) in RESPONSE to a single form submission. No. A form must have exactly one action. However, the server-side (e.g., CGI) program that processes your form submissions can perform any number of tasks (e.g., updating a database, sending email, logging a transaction) in response to a single form submission. |
|