Closed
Bug 19422
Opened 26 years ago
Closed 26 years ago
Pages with multiple form tags are not posting their data
Categories
(Core :: Layout: Form Controls, defect, P3)
Tracking
()
VERIFIED
WORKSFORME
M13
People
(Reporter: ellis, Assigned: pollmann)
References
()
Details
Attachments
(1 file)
252 bytes,
text/html
|
Details |
This problem occurs with M11 running on Redhat Linux 6.0 and Windows NT SP 4.
The problem is that if a html page has two or more forms then the http post
doesn't transfer the data to the webserver. I hit this with one of my servlets,
but I haven't found an easy way to reproduce it. The only way that I have been
able to reproduce it is with http://www.deja.com. Trying to perform a search on
deja fails when there are two or more sets of <form></form> that are posts.
Dang It. I just checked www.deja.com and they removed one of their form tags so
now M11 works. <sigh>
I tried to come up with a better test case and figured out some more
information. It turns out that M11 is doing the right thing and posting the
information from the second form. It does work. I think the problem that I hit
may have something to do with tables and input tags.
Updated•26 years ago
|
Assignee: karnaze → pollmann
Comment 2•26 years ago
|
||
Reassigning to Eric.
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
Assignee | ||
Comment 3•26 years ago
|
||
I just checked, and www.deja.com works for me too. If you can find a
combination of tables and input tags that causes this bug, can you please post
it to this bug? Thanks.
Ok, I've further narrowed down the problem that I was having. The following
html works with both Netscape 4.7 and IE 4, but not with M11 on NT SP4. If I
change the method from post to get, it will work with M11. I just hope that you
guys can reproduce this. Thanks for all of the good work.
<html>
<head>
<title>Form Example</title>
</head>
<body>
<form method=post action="/servlets/ParameterSnoop">
<input type=text name="textValue" value="">
<input type=hidden name="hiddenValue" value="55">
<input type=submit>
</form>
</body>
</html>
Assignee | ||
Updated•26 years ago
|
Status: RESOLVED → REOPENED
Assignee | ||
Updated•26 years ago
|
Resolution: WORKSFORME → ---
Target Milestone: M13
Assignee | ||
Comment 5•26 years ago
|
||
Ah, this shows the problem! It's not even trying to post for me. Thanks for
the great testcase!
Status: REOPENED → ASSIGNED
Assignee | ||
Comment 7•26 years ago
|
||
Assignee | ||
Comment 8•26 years ago
|
||
I modified the above test case so that you can view the values that are posted.
It is working now. Must have been a transient bug...
Status: ASSIGNED → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: --- → WORKSFORME
I would go ahead and just close this bug. I'm convinced that the problem is not
Mozilla. I can reproduce the bug with Apache JServ and a simple servlet, but I
can't reproduce it via the modified test case using echo.cgi. Mozilla is
posting form data correctly. I just need to dig more on the Apache JServ side
to see why I'm not seeing form data posted by M11. Thanks for the help.
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 10•25 years ago
|
||
Marking VERIFIED WORKSFORME on Linux6 2000-01-24-01 commercial build.
Also verified on:
- MacOS86 2000-01-24-02 commercial build
- Win98 2000-01-24-01 mozilla build
You need to log in
before you can comment on or make changes to this bug.
Description
•