Click to See Complete Forum and Search --> : Problem with form in Netscape 7


kelr
12-05-2002, 11:25 AM
We have a very basic webpage with a form on it. (It is very similar to the guestbook form in htmlgoodies.

a short version of it is...
<form METHOD=POST ENCTYPE="text/plain" ACTION="mailto:mailaddress@ouraddr?subject="WEB">
Your email address <input name="EMAIL" size=50><p>
Project number <input name="PROJNO" size=8 maxlength=7><p>
click<input type="submit" value="SEND"> to submit your message.<p>
click (input type="reset" VALUE="CLEAR"> to clear your message and start over.
</form>

This works fine in Netscape 4. It sends and email with "WEB" as the subject and the body of the message looks something like...
EMAIL=
PROJNO=1000

Our problem is that we now have people using Netscape 7 and the form no longer works properly. It will only sent the email with "WEB" in the subject and nothing in the body of the message.

Any ideas what I need to change to get this form to work for both Netscape 4 and 7?

Kelly