Hide Emails From Spammer

  • Thread starter Thread starter Phillip Vong
  • Start date Start date
P

Phillip Vong

I was told there was a way to hide the Emails on my website from Spammers.
This is what I've been using.

<a href="mailto:[email protected]?subject=Need Subject">
(e-mail address removed)</a><p>&nbsp;</td>

I was told that the (@) to represent the @ sign was not enough and
spammers could read this. Is that true?
Is there a way I can make the email desplay an @ for viewers without using
the @ sign like I have in the example?

Basically, I'm trying to find a way to keep Spammers from fishing for emails
on this website.

Thanks1
 
The best approach is to use forms that are process via a server-side script written in ASP, ASP.net,
PHP, etc., and not the FP Form Handler.

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

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Will webbots read hex email addresses?

I use JavaScript for email addy's on my site,
can't vouch for the success, but we don't receive
allot of group spam. Here's the code.
===============
<script language=JavaScript>
<!--
var username = "username";
var hostname = "Domain.com";
var linktext = "Click Here To Send Me Email";
document.write("<a href=" + "mail" + "to:" + username + "@" + hostname
+ ">" + linktext + "</a>")
//-->
</script>
=============

HTH
Don
====================
"Phillip Vong" <phillip_vong*at*yahoo*dot*com> wrote in message
|I was told there was a way to hide the Emails on my website from Spammers.
| This is what I've been using.
|
| <a href="mailto:[email protected]?subject=Need Subject">
| (e-mail address removed)</a><p>&nbsp;</td>
|
| I was told that the (@) to represent the @ sign was not enough and
| spammers could read this. Is that true?
| Is there a way I can make the email desplay an @ for viewers without using
| the @ sign like I have in the example?
|
| Basically, I'm trying to find a way to keep Spammers from fishing for
emails
| on this website.
|
| Thanks1
|
|
 
Don,

The only issue I ran into using JavaScript to hide email address, is when I did a search and replace
a few years later, which were not found.

I had totally forgotten that I had hidden a few addresses until someone sent an email to a specific
address. I had to contact this person to see how they found that specific email address.

So if this approach is use, in needs to be in a Include Page, so that you have a single file to
update.

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

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Agreed!!

Don
================
| Don,
|
| The only issue I ran into using JavaScript to hide email address, is when
I did a search and replace
| a few years later, which were not found.
|
| I had totally forgotten that I had hidden a few addresses until someone
sent an email to a specific
| address. I had to contact this person to see how they found that specific
email address.
|
| So if this approach is use, in needs to be in a Include Page, so that you
have a single file to
| update.
|
| --
| ==============================================
| Thomas A. Rowe (Microsoft MVP - FrontPage)
| WEBMASTER Resources(tm)
|
| FrontPage Resources, WebCircle, MS KB Quick Links, etc.
| ==============================================
| To assist you in getting the best answers for FrontPage support see:
| http://www.net-sites.com/sitebuilder/newsgroups.asp
|
| > Will webbots read hex email addresses?
| >
| > I use JavaScript for email addy's on my site,
| > can't vouch for the success, but we don't receive
| > allot of group spam. Here's the code.
| > ===============
| > <script language=JavaScript>
| > <!--
| > var username = "username";
| > var hostname = "Domain.com";
| > var linktext = "Click Here To Send Me Email";
| > document.write("<a href=" + "mail" + "to:" + username + "@" +
hostname
| > + ">" + linktext + "</a>")
| > //-->
| > </script>
| > =============
| >
| > HTH
| > Don
| > ====================
| > "Phillip Vong" <phillip_vong*at*yahoo*dot*com> wrote in message
| > | > |I was told there was a way to hide the Emails on my website from
Spammers.
| > | This is what I've been using.
| > |
| > | <a href="mailto:[email protected]?subject=Need Subject">
| > | (e-mail address removed)</a><p>&nbsp;</td>
| > |
| > | I was told that the (@) to represent the @ sign was not enough and
| > | spammers could read this. Is that true?
| > | Is there a way I can make the email desplay an @ for viewers without
using
| > | the @ sign like I have in the example?
| > |
| > | Basically, I'm trying to find a way to keep Spammers from fishing for
| > emails
| > | on this website.
| > |
| > | Thanks1
| > |
| > |
| >
| >
|
|
 
Just be advised that you and everybody else that believes using
JavaScript is secure are fooling. The JavaScript technique is a
sham because it does not and can not prevent the use of 'screen
scraping' the entire page and using Regular Expressions to parse the
e-mail address from the HTML that the JavaScript writes into the page.

It would be even more foolish to think that those that are in it for
the money are not using screen scraping and regular expressions.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/
 
A "safer" way is to use a script that has the email hard-coded into the script
itself, not one visible in "view source" of an html document.

Try this: www.form2email.co.uk - a script that hides email addresses from spam
harvesters - it puts the email address actually in the perl script (doesn't use
Hidden fields input types).


Also, here's an ASP script that you code the email address into the actual
script.

http://nuts4asp.com/scrips/pfeed/


Also, here's an "encoder" using javascript - only thing is the user will need
javascript turned on.

http://automaticlabs.com/enkoderform/

I don't think anything is foolproof.
 
here's one I've used for a while, although I'm going to use Thomas' include
page trick from here on out. ;-)

--
Chris Leeds,
Microsoft MVP-FrontPage

Please feel free to contact me here:
http://nedp.net/contact/
 

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

Back
Top