FrontPage Submit Button Issues

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

A form was created and published in FrontPage for our web site.
When a number of friends tested the form for us, we were able to receive the
information to our email as specified - all worked well.
If I try the form on my computer, the submit button actually opens Outlook
Express and an email window rather than sending the form feedback to our
specified email address.
We had a customer try to submit the same form on-line and she too had the
Outlook Express program open on her computer.
Why is it that some people can fill out the form and submit the info with no
issues, yet others have an email window open?

Thanks

-mike-
 
The "Action" for your form is set to send an email to (e-mail address removed)
however you also have a LINK on the submit button that's causing your
problem.

<a href="mailto:[email protected]">
<input type="submit" value="Submit" name="B1"></a>

Switch to Code View and remove the hyperlink so it just looks like:

<input type="submit" value="Submit" name="B1">
 
Back
Top