Form Problem

G

Gregg

Can someone take a look at the form/code on the following page:

http://www.salesimaging.com/managerscontact.htm

For some reason when I click Submit, the form will not process (I get an
undeliverable page). I have purlished and republished and am not having any
luck.

Can someone help me fix this so I do not have to start over.

Thanks!
 
T

Thomas A. Rowe

Are you using FP2003 and publishing to a server that has the FP extensions?

If yes to that above, do you have FP set to optimize the HTML during publishing?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
G

Gregg

Hi Thomas! The form worked until I deleted the "Reset Form" button that goes
next to the "Sumbit" button. Can you see if I screwed up the overall code at
that time?
 
T

Thomas A. Rowe

Gregg,

There is not reason for the form not to work, just because you remove the Reset button.

However remove the following and see if the form works:

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Ronnie T. Moore -->
<!-- Web Site: The JavaScript Source -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function initMail(form) {
text = "Check out this page: " + window.location;
form.message.value = "Hi " + form.sendto.value + " (" + form.to.value + "):\n\n"
+ text + "\n\nYour Friend,\n" + form.sendername.value + "(" + form.senderemail.value + ")";
return (form.to.value != "");
}
// End -->
</script>

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Top