On Tue, 19 Feb 2002 21:57:52 -0500, "Clark C . Evans" <[EMAIL PROTECTED]> 
wrote:
>
>On Tue, Feb 19, 2002 at 02:53:38PM -0600, Ian Bicking wrote:
>| 
>| No, rather when no submit button field was found, a default submit
>| button should be assumed.  IE and Mozilla will submit a form when an
>| enter is hit under certain circumstances.  I believe this will lead to
>| the form being submitted without any named submit button being sent
>| (yes?) -- in this case, FFK should act as though the default submit
>| button was hit.
>
>IE and Mozilla seem to choose the first button in 
>the tab order as the default.

What makes you say this?  I don't think it is true.  I just tried this web 
page:

<html>
 <body>
  <form method=get action='/cgi-bin/debug.cgi'>
   <input type=text name="one" value="two"><br>
   <input type=submit name='btn' value='aaa'><br>
   <input type=submit name='btn' value='bbb'><br>
   <input type=submit name='btn' value='ccc'><br>
  </form>
 </body>
</html>

If I type "xxx" into the text box and press enter, the URL that gets sent is:
   http://www.xxx.com/cgi-bin/debug.cgi?one=xxx

There are no buttons at all.
~
~
~

--
- Tim Roberts, [EMAIL PROTECTED]
  Providenza & Boekelheide, Inc.



_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to