Hi all.
I have this web page:
If select value positive or negative in the select "A", in the select "B" required value 1, would say "Close".
If select value 2 would say "Open" in the select "B" stop the form, its possible?
Can you help me ?
I have this web page:
Code:
<html> <head> </head> <body> <form method="POST" action="go.asp"> <select size="1" name="A"> <option>Select</option> <option value="POSITIVE">POSITIVE</option> <option value="NEGATIVE">NEGATIVE</option> </select> <select size="1" name="B"> <option>Select</option> <option value="0">Open</option> <option value="1">Close</option> </select> <input type="submit" value="GO" name="B1"> </form> </body> </html>
If select value 2 would say "Open" in the select "B" stop the form, its possible?
Can you help me ?
Comment