Will webbot read hex email addresses?

  • Thread starter Thread starter Jm
  • Start date Start date
J

Jm

I am wondering, in order to better protect my email address from being
"picked up" by email harvesters, I wanted to put my email in hex format. I
notice in the HTML w/ FP, it writes it in plain text. Can I change it to HEX
and have it still work with FPSE?

Thanks,
Jm
www.jmconsultingllc.com
 
"mailto:abc@abc
d.com"
instead of (e-mail address removed)

I would do a trail an error, but I really don't have the energy today to
mess around with the site and/or the server and server extensions if it
messes things up. LOL,

Thanks,
Jm
www.jmconsultingllc.com
 
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>
 
We use it on our webs, and works fine. Don't get any spam anymore.
--
-----
Tom Pepper Willett
Microsoft MVP - FrontPage
-----
|
"mailto:abc@abc
| d.com"
| instead of (e-mail address removed)
|
| I would do a trail an error, but I really don't have the energy today to
| mess around with the site and/or the server and server extensions if it
| messes things up. LOL,
|
| Thanks,
| Jm
| www.jmconsultingllc.com
|
|
|
|
|
| | > I am wondering, in order to better protect my email address from being
| > "picked up" by email harvesters, I wanted to put my email in hex format.
I
| > notice in the HTML w/ FP, it writes it in plain text. Can I change it to
| HEX
| > and have it still work with FPSE?
| >
| > Thanks,
| > Jm
| > www.jmconsultingllc.com
| >
| >
|
|
 
Back
Top