Hi All,
The code for this very simple form below works as expected in IE but in Firefox a message box opens saying
"What should Firefox do with this file - Open with Perl Command Line..."
I have tried using Javascript Submit() - with the same outcome.
Would be very grateful for some ideas.
CODE.......
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=shift-jis">
<title>Test</title>
</head>
<body>
<h1>Mail Test Form</h1>
<hr>
<form method="post" action="/cgi-bin/FormMail.pl">
Name:<br>
<input type="text" size=50 name="NAME"><br>
<br>
<br>
<input type="submit" value=" Submit ">
<input type="reset" value=" Cancel ">
</form>
<hr>
</body>
</html>
............END CODE


Answers