"contact" page templates

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

Guest

am using fp 2002 would like a contact me page template that protects email
address. my edition has none. can i download, etc.
 
FP doesn't have any template or function to do this, so you will need to avoid using the FP Form
Handler.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Hi
You need to do this with a form. Here is a simple reply form. Works
with Frontpage
Just copy and past this in your html page below /head
In the line <input type="hidden" name="TO"
value="(e-mail address removed)">
you must fill in your own email adres

Ron

<form enctype="multipart/form-data" method="post"
action="/cgi-bin/mailer">
<table border="0" width="481" height="138">
<tr>
<td width="139" height="22">&nbsp;</td>
<td width="332" height="22">
&nbsp;</td>
</tr>
<tr>
<td width="139" height="22"><font face="Tahoma" style="font-size:
8pt">Je naam:</font></td>
<td width="332" height="22">
<font face="Tahoma"><span style="font-size: 8pt">
<input name="NAME" maxlength="35" size="54"></span></font></td>
</tr>
<tr>
<td width="139" height="22"><font face="Tahoma" style="font-size:
8pt">Je e-mail:</font></td>
<td width="332" height="22">
<font face="Tahoma"><span style="font-size: 8pt">
<input name="FROM" maxlength="35" size="54"></span></font></td>
</tr>
<tr>
<td width="139" height="151" align="left" valign="top">
<font face="Tahoma" style="font-size: 8pt">Bericht : </font></td>
<td width="332" height="151" align="left" valign="top">
<font face="Tahoma"><span style="font-size: 8pt">
<textarea name="COMMENTS" cols="44"
rows="9"></textarea></span></font></td>
</tr>
<tr>
<td colspan="2" width="475" height="27">
<p align="center"><font face="Tahoma"><span style="font-size:
8pt"><input type="submit" value="Verstuur">&nbsp;<input type="reset"
value="Verwijder"></span></font></td>
</tr>
</table>
<font face="Tahoma"><span style="font-size: 8pt">
<input type="hidden" name="TO" value="(e-mail address removed)">
<input type="hidden" name="SUBJECT" value="sent from site : name">
<input type="hidden" name="GOTOURL"
value="http://www.homepage.com/pg_thankyou.htm">
</span></font>
</form>
 
The form below will not work unless the user has the following

/cgi-bin/mailer

on their web server.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Back
Top