forms

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.
 
R

Ronx

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top