From the first article referenced: "...You can opt to not use FPSE for your
form processing in which case your program may provide for a level of
customization not available with Publisher and FPSE. If your host provides
and supports a form program and you have the technical know how to program
it (or your host assists you). In the form properties dialog for your form
simply select the option to use "an ISP Program" and then input the server
path and name of the form program...."
Most webhosts provide a forms program. Go to your host and look under
Support or FAQs.
If that isn't a viable choice, there are lots of forms programs available
that might work for you. Google and look around. Examples:
http://www.jamesshuggins.com/h/web1/huggins-email-form-script.htm
http://www.scriptarchive.com/formmail.html
http://support.netfirms.com/idx.php...figure-formmail-with-Microsoft-Publisher.html
Alternatively Google for javascript forms. Here is a simple example of a
javascript form that you can try. Just change the obvious parts, and use the
insert html code fragment feature to insert it into your Publisher page.
Ctrl + V is a good way to paste into the code fragment dialog:
<FORM action=mailto:
[email protected] method="post"
enctype="text/plain">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%">
<TR>
<TD width="30%"><DIV align="right">
<B>Name:</B>
</DIV>
</TD>
<TD width="70%">
<INPUT type="text" name="name" size="20">
</TD>
</TR>
<TR>
<TD><DIV align="right"><B>Email:</B></DIV>
</TD>
<TD>
<INPUT type="text" name="email" size="20">
</TD>
</TR>
<TR>
<TD><DIV align="right">
<B>Comment:</B>
</DIV>
</TD>
<TD><TEXTAREA name="comment" cols="30" wrap="virtual" rows="4">
</TEXTAREA>
</TD></TR>
<TR>
<TD> </TD>
<TD>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</TD></TR>
</TABLE>
</FORM>
DavidF