fp 2003 hiding email address in post under form

M

madhouse

Hi
am sending form to email address. don't want to use
direct email address in the form properties options send-
to email address field. to stop becoming spammed i want
to create some hidden fields that when concatenated
become the email address. only problem is how to get the
email address property on the form properties-options
dialog to reference and decode these hidden fields.
Thanks in anticipation of any ideas or answers.
Jeff
 
T

Tom Pepper Willett

You can't do it using the FP forms to email.
--
=====================================================
Tom Pepper Willett [Microsoft MVP - FrontPage]
----------------------------------------------------------------------------
-------------------
Microsoft FrontPage:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
http://msdn.microsoft.com/office/understanding/frontpage/

=====================================================
| Hi
| am sending form to email address. don't want to use
| direct email address in the form properties options send-
| to email address field. to stop becoming spammed i want
| to create some hidden fields that when concatenated
| become the email address. only problem is how to get the
| email address property on the form properties-options
| dialog to reference and decode these hidden fields.
| Thanks in anticipation of any ideas or answers.
| Jeff
 
J

Jon Spivey

Hi,
There's a few javascript solutions to "encode" your email address - search
the group. It shoudln't take too long before the spammers figure this out
though - if they haven't already. You can make a "contact us" form which
sends email from the server so your address is never visible but I always
put email addresses on my sites as well because I think customers like to
see them.

I don't like junk email any more than the next guy but it's really a price
of doing business on the internet - provide a contact form and email
address(es) on your site set up filters in Outlook and ignore the junk. I
don't think there's a better answer.
 
A

Andrew Murray

Those email encoders don't work on things like hidden fields if you use a form
that sends mail with an asp or perl script etc e.g., <input type="hidden"
name="email" value="[email protected]"> can still apparently be picked up by spam
bots (I was told this by a computer tech), and also won't work with the Frontpage
form handler, unfortunately. There are some ways in which scripts can have the
email address coded into the script itself, and not as a hidden field in an html
form.....just a matter of searching and find the right script - most of the
freebies use the hidden field method though.

A normal <mailto="[email protected]"> can be 'effectively' hidden from spam bots,
such as this one:
http://automaticlabs.com/home/ I've recently set up new email addresses and use
this encoder, I'll just have to wait and see how effective it is. I haven't yet
had any spam on those addresses.

This uses javascript and obviously relies on the user having it turned on; there
was another one I found (can't remember where) that used ASP to hide the web
address in the html code, which only displayed it at 'view-time' on the browser,
but was just a line of ASP code when viewing the source and gave no clue to the
email address at all just by reading the html.
 
T

Thomas A. Rowe

You wouldn't send the email address as a hidden field, you would either have it hard code on the
page the does the form processing or retrieve the address from a database or flat file on the form
processing page.

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

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

madouse

Thanks everyone.

In the post event of the form handler the email address
is shown as S-Email-Address="[email protected]". I was
hoping that several hidden fields could be defined, a
script that creates a temporary email variable as
hidden1+hidden2+hidden3 and the S-Email-Address asigned
to that temporary email variable.

Is this not possible?
-----Original Message-----
Those email encoders don't work on things like hidden fields if you use a form
that sends mail with an asp or perl script etc e.g., <input type="hidden"
name="email" value="[email protected]"> can still
apparently be picked up by spam
bots (I was told this by a computer tech), and also won't work with the Frontpage
form handler, unfortunately. There are some ways in which scripts can have the
email address coded into the script itself, and not as a hidden field in an html
form.....just a matter of searching and find the right script - most of the
freebies use the hidden field method though.

A normal <mailto="[email protected]"> can
be 'effectively' hidden from spam bots,
such as this one:
http://automaticlabs.com/home/ I've recently set up new email addresses and use
this encoder, I'll just have to wait and see how
effective it is. I haven't yet
 
S

Stefan B Rusynko

Not possible w/ the FP forms handler
- the webbot code will always show the email address and can't be modified to obfuscate it




| Thanks everyone.
|
| In the post event of the form handler the email address
| is shown as S-Email-Address="[email protected]". I was
| hoping that several hidden fields could be defined, a
| script that creates a temporary email variable as
| hidden1+hidden2+hidden3 and the S-Email-Address asigned
| to that temporary email variable.
|
| Is this not possible?
|
| >-----Original Message-----
| >Those email encoders don't work on things like hidden
| fields if you use a form
| >that sends mail with an asp or perl script etc e.g.,
| <input type="hidden"
| >name="email" value="[email protected]"> can still
| apparently be picked up by spam
| >bots (I was told this by a computer tech), and also
| won't work with the Frontpage
| >form handler, unfortunately. There are some ways in
| which scripts can have the
| >email address coded into the script itself, and not as a
| hidden field in an html
| >form.....just a matter of searching and find the right
| script - most of the
| >freebies use the hidden field method though.
| >
| >A normal <mailto="[email protected]"> can
| be 'effectively' hidden from spam bots,
| >such as this one:
| >http://automaticlabs.com/home/ I've recently set up new
| email addresses and use
| >this encoder, I'll just have to wait and see how
| effective it is. I haven't yet
| >had any spam on those addresses.
| >
| >This uses javascript and obviously relies on the user
| having it turned on; there
| >was another one I found (can't remember where) that used
| ASP to hide the web
| >address in the html code, which only displayed it
| at 'view-time' on the browser,
| >but was just a line of ASP code when viewing the source
| and gave no clue to the
| >email address at all just by reading the html.
| >
| >
| >
| >| >> Hi,
| >> There's a few javascript solutions to "encode" your
| email address - search
| >> the group. It shoudln't take too long before the
| spammers figure this out
| >> though - if they haven't already. You can make
| a "contact us" form which
| >> sends email from the server so your address is never
| visible but I always
| >> put email addresses on my sites as well because I
| think customers like to
| >> see them.
| >>
| >> I don't like junk email any more than the next guy but
| it's really a price
| >> of doing business on the internet - provide a contact
| form and email
| >> address(es) on your site set up filters in Outlook and
| ignore the junk. I
| >> don't think there's a better answer.
| >>
| >> --
| >> Cheers,
| >> Jon
| >> Microsoft MVP - FP
| >>
| in message
| >> | >> > Hi
| >> > am sending form to email address. don't want to use
| >> > direct email address in the form properties options
| send-
| >> > to email address field. to stop becoming spammed i
| want
| >> > to create some hidden fields that when concatenated
| >> > become the email address. only problem is how to get
| the
| >> > email address property on the form properties-options
| >> > dialog to reference and decode these hidden fields.
| >> > Thanks in anticipation of any ideas or answers.
| >> > Jeff
| >>
| >>
| >
| >
| >.
| >
 
Top