forms

  • Thread starter Thread starter Chief
  • Start date Start date
C

Chief

I need help with a form. The submit button references a (mailto:) command
with the correct email address. when you hit the submit button the
confirmation page comes up but no form is sent. I also have email buttons on
the site that bring up outlook express and work fine (same email address) A
little wile ago our cable company was changed which is also our internet
provider and the email address was changed and I changed it on all my pages.
Only the forms won't submit.
thanks for any help.
 
Remove the mailto: from the submit button.

If the form is to go by a mailto, then that goes in the action attribute
for the <form tag:
<form method="post" action="mailto:[email protected]">

Form fields

<inp type="submit" value="submit">
</form>

Otherwise the action attribute should reference either the FrontPage
extensions (the email details will be set in form properties) or point
to a script on the server that sends the email.
 
Back
Top