in reply to form method in a null form

Hi

how do I get the else part to execute and continue along to the next page

Use java script to do the job. Just redirct it to a new page using the java script. Put this script in the else part.

how do I write a select all button

So it with the help of onclick jscript function.

Thanks
SasiKumar

Replies are listed 'Best First'.
Re^2: form method in a null form
by macPerl (Beadle) on Jan 19, 2005 at 10:33 UTC
    As was pointed out in a response to a recent post I made, you have to be aware that either
    • you have control over the clients running the script to ensure that the local scripting language is always running,
      or,
    • you need to take into account that users can modify the client config to disable scripting locally and/or muck around with your form to send invalid data

    As an aside, you may want to consider skipping the form entirely for the "else" condition. Procedurally, I can understand the logic in having all users flowing through the same pages/forms, however, you obviously have all the data needed to skip the form entirely and send them to the next stage.