I have a form I'm trouble shooting, (it's lenghty), After a user selects a check box they are prompted to enter a date in a text field. I check the value of the text field with an onBlur event to make sure it's a date but if the user hits the return button the form posts. I have removed instances of method and action from <form name="myname" method="post" action="myaction.asp"> and I've removed all submit buttons trying to figure out why the form still posts.
When I remove the method="post" action="myaction.asp" the page posts to itself. If I leave them in, the form posts to myaction.asp.
How is it posting without a submit routine or button of type submit?
When I remove the method="post" action="myaction.asp" the page posts to itself. If I leave them in, the form posts to myaction.asp.
How is it posting without a submit routine or button of type submit?