Adobe Dreamweaver Forums



Last 10 THreads :         Import Word 2007 into RH6 (Last Post : atz at IDN - Replies : 5 - Views : 7 )           »          Code for loading multiple external SWF files insequence? (Last Post : jgleica - Replies : 2 - Views : 3 )           »          Cotrolling Separate Movie Files (Last Post : NedWebs - Replies : 1 - Views : 2 )           »          Selecting XML Children with Namespaces (Last Post : aharv1 - Replies : 2 - Views : 3 )           »          FLA movie as nav bar? (Last Post : NedWebs - Replies : 1 - Views : 2 )           »          Dreamweaver crashing (Last Post : walla walla - Replies : 1 - Views : 2 )           »          Please Help! Newbie PHP and DW question (Last Post : Murray *ACE* - Replies : 1 - Views : 2 )           »          Future of RoboHelp? (Last Post : Peter Grainge - Replies : 3 - Views : 4 )           »          Super() (Last Post : ceyesuma - Replies : 4 - Views : 5 )           »          randomly jump to a frame (Last Post : NedWebs - Replies : 1 - Views : 2 )           »         


Home Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
User Info Statistics
Go Back   Adobe Dreamweaver Forums > Dreamweaver: Main > Dreamweaver Q&A
 
Tags: ,



Reply
  #1 (permalink)  
Old 04-13-2008, 02:48 AM
Steve
 
Posts: n/a
Diggs:
Default How to make a feedback page

I accidently put this question in the FW group.



I have a website with my email address as the webmaster.

Since then I've been receiving numerous spam emails. I assume it's spam
stuff fishing through the websites.

Is there an easy way to implement a feedback page so my address is hidden?
I know some hosting companies offer such plugins, but thought there is an
alternate method.

Thanks


Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 04-13-2008, 02:48 AM
Dave Cox
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

Steve have a look at www.maghullmtc.co.uk and then look at the source for
the page, note the e-mail link - its a javascript series of numbers so the
spambots cant read it!!


"Steve" <nobody@nobody.com> wrote in message
news:Xns99FEDE37D9768nobodynobodycom@216.196.97.13 6...
>I accidently put this question in the FW group.
>
>
>
> I have a website with my email address as the webmaster.
>
> Since then I've been receiving numerous spam emails. I assume it's spam
> stuff fishing through the websites.
>
> Is there an easy way to implement a feedback page so my address is hidden?
> I know some hosting companies offer such plugins, but thought there is an
> alternate method.
>
> Thanks



Reply With Quote
  #3 (permalink)  
Old 04-13-2008, 02:48 AM
Steve
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

"Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%xgj.29628
$KC3.27725@newsfe6-gui.ntli.net:

> www.maghullmtc.co.uk


I'm not sure how that "script" works, however, I was unable to find the
email address in the source code.

Can you explain or guide me to a link that will explain it?


Thank you very much.
Reply With Quote


  #4 (permalink)  
Old 04-13-2008, 02:48 AM
Dave Cox
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

The footer contains JavaScript designed to hide the e-mail address so that
the spam bots cant pick it up. The numbers are the character equivalent and
are then added together to form the e-mail address

@ is 64, a full stop 46 The letters a to z start at 97


<p align="left">Designed by <script type="text/javascript">



var emailarray7962= new
Array(100,97,118,101,46,99,111,120,64,98,105,114,1 07,100,97,108,101,111,114,112,104,101,117,115,46,9 9,111,46,117,107)

var postemail7962=''

for (i=0;i<emailarray7962.length;i++)

postemail7962+=String.fromCharCode(emailarray7962[i])



document.write('<a title="does exactly what it says"
href="mailto:'+postemail7962+'">Dave Cox</a>')



</script>


so when you click on the mail to link, you get the e-mail address. All you
need to to is copy this code and replace the numbers with your e-mail
address equivelent.

so if your e-mail address was abc@def.co.uk you would change the above to

97, 98, 99. 64, 100, 101, 102, 46, 99,11,46,117,107
a b c @ d e f . c o . u k

Does that help?

"Steve" <nobody@nobody.com> wrote in message
news:Xns9A1EDECB621nobodynobodycom@216.196.97.136. ..
> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%xgj.29628
> $KC3.27725@newsfe6-gui.ntli.net:
>
>> www.maghullmtc.co.uk

>
> I'm not sure how that "script" works, however, I was unable to find the
> email address in the source code.
>
> Can you explain or guide me to a link that will explain it?
>
>
> Thank you very much.



Reply With Quote
  #5 (permalink)  
Old 04-13-2008, 02:48 AM
Steve
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

"Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
news:MKNgj.30349$KC3.5634@newsfe6-gui.ntli.net:

> The footer contains JavaScript designed to hide the e-mail address so
> that
> the spam bots cant pick it up. The numbers are the character
> equivalent and are then added together to form the e-mail address
>
> @ is 64, a full stop 46 The letters a to z start at 97
>
>
> <p align="left">Designed by <script type="text/javascript">
>
>
>
> var emailarray7962= new
> Array

(100,97,118,101,46,99,111,120,64,98,105,114,107,10 0,97,108,101,111
> ,114,112,104,101,117,115,46,99,111,46,117,107)
>
> var postemail7962=''
>
> for (i=0;i<emailarray7962.length;i++)
>
> postemail7962+=String.fromCharCode(emailarray7962[i])
>
>
>
> document.write('<a title="does exactly what it says"
> href="mailto:'+postemail7962+'">Dave Cox</a>')
>
>
>
> </script>
>
>
> so when you click on the mail to link, you get the e-mail address. All
> you need to to is copy this code and replace the numbers with your
> e-mail address equivelent.
>
> so if your e-mail address was abc@def.co.uk you would change the above
> to
>
> 97, 98, 99. 64, 100, 101, 102, 46, 99,11,46,117,107
> a b c @ d e f . c o . u k
>
> Does that help?
>
> "Steve" <nobody@nobody.com> wrote in message
> news:Xns9A1EDECB621nobodynobodycom@216.196.97.136. ..
>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%xgj.29628
>> $KC3.27725@newsfe6-gui.ntli.net:
>>
>>> www.maghullmtc.co.uk

>>
>> I'm not sure how that "script" works, however, I was unable to find
>> the email address in the source code.
>>
>> Can you explain or guide me to a link that will explain it?
>>
>>
>> Thank you very much.

>
>
>


I will have some free time Thurs. night to try this.

I'll let you know how I make out.

Thanks for your assistance!
Reply With Quote
  #6 (permalink)  
Old 04-13-2008, 02:48 AM
Dave Cox
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

My pleasure.....

"Steve" <nobody@nobody.com> wrote in message
news:Xns9A1FF108DD04Fnobodynobodycom@216.196.97.13 6...
> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
> news:MKNgj.30349$KC3.5634@newsfe6-gui.ntli.net:
>
>> The footer contains JavaScript designed to hide the e-mail address so
>> that
>> the spam bots cant pick it up. The numbers are the character
>> equivalent and are then added together to form the e-mail address
>>
>> @ is 64, a full stop 46 The letters a to z start at 97
>>
>>
>> <p align="left">Designed by <script type="text/javascript">
>>
>>
>>
>> var emailarray7962= new
>> Array

> (100,97,118,101,46,99,111,120,64,98,105,114,107,10 0,97,108,101,111
>> ,114,112,104,101,117,115,46,99,111,46,117,107)
>>
>> var postemail7962=''
>>
>> for (i=0;i<emailarray7962.length;i++)
>>
>> postemail7962+=String.fromCharCode(emailarray7962[i])
>>
>>
>>
>> document.write('<a title="does exactly what it says"
>> href="mailto:'+postemail7962+'">Dave Cox</a>')
>>
>>
>>
>> </script>
>>
>>
>> so when you click on the mail to link, you get the e-mail address. All
>> you need to to is copy this code and replace the numbers with your
>> e-mail address equivelent.
>>
>> so if your e-mail address was abc@def.co.uk you would change the above
>> to
>>
>> 97, 98, 99. 64, 100, 101, 102, 46, 99,11,46,117,107
>> a b c @ d e f . c o . u k
>>
>> Does that help?
>>
>> "Steve" <nobody@nobody.com> wrote in message
>> news:Xns9A1EDECB621nobodynobodycom@216.196.97.136. ..
>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%xgj.29628
>>> $KC3.27725@newsfe6-gui.ntli.net:
>>>
>>>> www.maghullmtc.co.uk
>>>
>>> I'm not sure how that "script" works, however, I was unable to find
>>> the email address in the source code.
>>>
>>> Can you explain or guide me to a link that will explain it?
>>>
>>>
>>> Thank you very much.

>>
>>
>>

>
> I will have some free time Thurs. night to try this.
>
> I'll let you know how I make out.
>
> Thanks for your assistance!



Reply With Quote


  #7 (permalink)  
Old 04-13-2008, 02:48 AM
Steve
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

"Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:yi8hj.34305
$ou3.14082@newsfe4-win.ntli.net:

> My pleasure.....
>
> "Steve" <nobody@nobody.com> wrote in message
> news:Xns9A1FF108DD04Fnobodynobodycom@216.196.97.13 6...
>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
>> news:MKNgj.30349$KC3.5634@newsfe6-gui.ntli.net:
>>
>>> The footer contains JavaScript designed to hide the e-mail address

so
>>> that
>>> the spam bots cant pick it up. The numbers are the character
>>> equivalent and are then added together to form the e-mail address
>>>
>>> @ is 64, a full stop 46 The letters a to z start at 97
>>>
>>>
>>> <p align="left">Designed by <script type="text/javascript">
>>>
>>>
>>>
>>> var emailarray7962= new
>>> Array

>> (100,97,118,101,46,99,111,120,64,98,105,114,107,10 0,97,108,101,111
>>> ,114,112,104,101,117,115,46,99,111,46,117,107)
>>>
>>> var postemail7962=''
>>>
>>> for (i=0;i<emailarray7962.length;i++)
>>>
>>> postemail7962+=String.fromCharCode(emailarray7962[i])
>>>
>>>
>>>
>>> document.write('<a title="does exactly what it says"
>>> href="mailto:'+postemail7962+'">Dave Cox</a>')
>>>
>>>
>>>
>>> </script>
>>>
>>>
>>> so when you click on the mail to link, you get the e-mail address.

All
>>> you need to to is copy this code and replace the numbers with your
>>> e-mail address equivelent.
>>>
>>> so if your e-mail address was abc@def.co.uk you would change the

above
>>> to
>>>
>>> 97, 98, 99. 64, 100, 101, 102, 46, 99,11,46,117,107
>>> a b c @ d e f . c o . u

k
>>>
>>> Does that help?
>>>
>>> "Steve" <nobody@nobody.com> wrote in message
>>> news:Xns9A1EDECB621nobodynobodycom@216.196.97.136. ..
>>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%

xgj.29628
>>>> $KC3.27725@newsfe6-gui.ntli.net:
>>>>
>>>>> www.maghullmtc.co.uk
>>>>
>>>> I'm not sure how that "script" works, however, I was unable to find
>>>> the email address in the source code.
>>>>
>>>> Can you explain or guide me to a link that will explain it?
>>>>
>>>>
>>>> Thank you very much.
>>>
>>>
>>>

>>
>> I will have some free time Thurs. night to try this.
>>
>> I'll let you know how I make out.
>>
>> Thanks for your assistance!

>
>
>


This certainly works as you said. Hopefully the spammers won't find a
way around this.

I do have two questions and I apologize for them because it comes from
not knowing HTML code.

I have a picture for 'contact us' where I'd want this code placed. Where
do I place the code to use the picture instead of using "Mail Us"?

Do I need the include "does exactly what it says"?

These two questions should complete my needs. Typically I use tables to
place everything and should figure out how to place everything to
include this code. I was about to ask a third question about placement,
but I'll work on it myself since I don't know HTML code.

I'm trying to learn Dreamweaver instead of Frontpage and hope I can
become good with it.

Thanks in advance.

Reply With Quote
  #8 (permalink)  
Old 04-13-2008, 02:48 AM
Dave Cox
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

Hi Stevee,
The "Does exactly what is says" is the alternative txt when you put your
mouse over the link, so you can chang it to what you want. if you want the
picture to be the link to your e-mail. then you need the picture under the
<a href> so you would have, using the script I've given you

<a href=mailto:'+postemail7962+'"><img scr="image.jpg" alt="describe the
link></a>

Let me know if you have any problems you can e-mail me at dave at
maghuNOSPAMllmtc dot co dot uk removing and replacing the obvious.

I always say to people learn HTML, then if something goes wrong, you know
what to look for.

Happy web building.......


"Steve" <nobody@nobody.com> wrote in message
news:Xns9A24C6C70C77Cnobodynobodycom@216.196.97.13 6...
> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:yi8hj.34305
> $ou3.14082@newsfe4-win.ntli.net:
>
>> My pleasure.....
>>
>> "Steve" <nobody@nobody.com> wrote in message
>> news:Xns9A1FF108DD04Fnobodynobodycom@216.196.97.13 6...
>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
>>> news:MKNgj.30349$KC3.5634@newsfe6-gui.ntli.net:
>>>
>>>> The footer contains JavaScript designed to hide the e-mail address

> so
>>>> that
>>>> the spam bots cant pick it up. The numbers are the character
>>>> equivalent and are then added together to form the e-mail address
>>>>
>>>> @ is 64, a full stop 46 The letters a to z start at 97
>>>>
>>>>
>>>> <p align="left">Designed by <script type="text/javascript">
>>>>
>>>>
>>>>
>>>> var emailarray7962= new
>>>> Array
>>> (100,97,118,101,46,99,111,120,64,98,105,114,107,10 0,97,108,101,111
>>>> ,114,112,104,101,117,115,46,99,111,46,117,107)
>>>>
>>>> var postemail7962=''
>>>>
>>>> for (i=0;i<emailarray7962.length;i++)
>>>>
>>>> postemail7962+=String.fromCharCode(emailarray7962[i])
>>>>
>>>>
>>>>
>>>> document.write('<a title="does exactly what it says"
>>>> href="mailto:'+postemail7962+'">Dave Cox</a>')
>>>>
>>>>
>>>>
>>>> </script>
>>>>
>>>>
>>>> so when you click on the mail to link, you get the e-mail address.

> All
>>>> you need to to is copy this code and replace the numbers with your
>>>> e-mail address equivelent.
>>>>
>>>> so if your e-mail address was abc@def.co.uk you would change the

> above
>>>> to
>>>>
>>>> 97, 98, 99. 64, 100, 101, 102, 46, 99,11,46,117,107
>>>> a b c @ d e f . c o . u

> k
>>>>
>>>> Does that help?
>>>>
>>>> "Steve" <nobody@nobody.com> wrote in message
>>>> news:Xns9A1EDECB621nobodynobodycom@216.196.97.136. ..
>>>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%

> xgj.29628
>>>>> $KC3.27725@newsfe6-gui.ntli.net:
>>>>>
>>>>>> www.maghullmtc.co.uk
>>>>>
>>>>> I'm not sure how that "script" works, however, I was unable to find
>>>>> the email address in the source code.
>>>>>
>>>>> Can you explain or guide me to a link that will explain it?
>>>>>
>>>>>
>>>>> Thank you very much.
>>>>
>>>>
>>>>
>>>
>>> I will have some free time Thurs. night to try this.
>>>
>>> I'll let you know how I make out.
>>>
>>> Thanks for your assistance!

>>
>>
>>

>
> This certainly works as you said. Hopefully the spammers won't find a
> way around this.
>
> I do have two questions and I apologize for them because it comes from
> not knowing HTML code.
>
> I have a picture for 'contact us' where I'd want this code placed. Where
> do I place the code to use the picture instead of using "Mail Us"?
>
> Do I need the include "does exactly what it says"?
>
> These two questions should complete my needs. Typically I use tables to
> place everything and should figure out how to place everything to
> include this code. I was about to ask a third question about placement,
> but I'll work on it myself since I don't know HTML code.
>
> I'm trying to learn Dreamweaver instead of Frontpage and hope I can
> become good with it.
>
> Thanks in advance.
>



Reply With Quote
  #9 (permalink)  
Old 04-13-2008, 02:48 AM
Steve
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

"Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
news:X67kj.62907$h35.52841@newsfe2-gui.ntli.net:

> Hi Stevee,
> The "Does exactly what is says" is the alternative txt when you put
> your mouse over the link, so you can chang it to what you want. if you
> want the picture to be the link to your e-mail. then you need the
> picture under the <a href> so you would have, using the script I've
> given you
>
> <a href=mailto:'+postemail7962+'"><img scr="image.jpg" alt="describe
> the link></a>
>
> Let me know if you have any problems you can e-mail me at dave at
> maghuNOSPAMllmtc dot co dot uk removing and replacing the obvious.
>
> I always say to people learn HTML, then if something goes wrong, you
> know what to look for.
>
> Happy web building.......
>
>
> "Steve" <nobody@nobody.com> wrote in message
> news:Xns9A24C6C70C77Cnobodynobodycom@216.196.97.13 6...
>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:yi8hj.34305
>> $ou3.14082@newsfe4-win.ntli.net:
>>
>>> My pleasure.....
>>>
>>> "Steve" <nobody@nobody.com> wrote in message
>>> news:Xns9A1FF108DD04Fnobodynobodycom@216.196.97.13 6...
>>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
>>>> news:MKNgj.30349$KC3.5634@newsfe6-gui.ntli.net:
>>>>
>>>>> The footer contains JavaScript designed to hide the e-mail
>>>>> address

>> so
>>>>> that
>>>>> the spam bots cant pick it up. The numbers are the character
>>>>> equivalent and are then added together to form the e-mail address
>>>>>
>>>>> @ is 64, a full stop 46 The letters a to z start at 97
>>>>>
>>>>>
>>>>> <p align="left">Designed by <script type="text/javascript">
>>>>>
>>>>>
>>>>>
>>>>> var emailarray7962= new
>>>>> Array
>>>> (100,97,118,101,46,99,111,120,64,98,105,114,107,10 0,97,108,101,111
>>>>> ,114,112,104,101,117,115,46,99,111,46,117,107)
>>>>>
>>>>> var postemail7962=''
>>>>>
>>>>> for (i=0;i<emailarray7962.length;i++)
>>>>>
>>>>> postemail7962+=String.fromCharCode(emailarray7962[i])
>>>>>
>>>>>
>>>>>
>>>>> document.write('<a title="does exactly what it says"
>>>>> href="mailto:'+postemail7962+'">Dave Cox</a>')
>>>>>
>>>>>
>>>>>
>>>>> </script>
>>>>>
>>>>>
>>>>> so when you click on the mail to link, you get the e-mail address.

>> All
>>>>> you need to to is copy this code and replace the numbers with your
>>>>> e-mail address equivelent.
>>>>>
>>>>> so if your e-mail address was abc@def.co.uk you would change the

>> above
>>>>> to
>>>>>
>>>>> 97, 98, 99. 64, 100, 101, 102, 46, 99,11,46,117,107
>>>>> a b c @ d e f . c o . u

>> k
>>>>>
>>>>> Does that help?
>>>>>
>>>>> "Steve" <nobody@nobody.com> wrote in message
>>>>> news:Xns9A1EDECB621nobodynobodycom@216.196.97.136. ..
>>>>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%

>> xgj.29628
>>>>>> $KC3.27725@newsfe6-gui.ntli.net:
>>>>>>
>>>>>>> www.maghullmtc.co.uk
>>>>>>
>>>>>> I'm not sure how that "script" works, however, I was unable to
>>>>>> find the email address in the source code.
>>>>>>
>>>>>> Can you explain or guide me to a link that will explain it?
>>>>>>
>>>>>>
>>>>>> Thank you very much.
>>>>>
>>>>>
>>>>>
>>>>
>>>> I will have some free time Thurs. night to try this.
>>>>
>>>> I'll let you know how I make out.
>>>>
>>>> Thanks for your assistance!
>>>
>>>
>>>

>>
>> This certainly works as you said. Hopefully the spammers won't find a
>> way around this.
>>
>> I do have two questions and I apologize for them because it comes
>> from not knowing HTML code.
>>
>> I have a picture for 'contact us' where I'd want this code placed.
>> Where do I place the code to use the picture instead of using "Mail
>> Us"?
>>
>> Do I need the include "does exactly what it says"?
>>
>> These two questions should complete my needs. Typically I use tables
>> to place everything and should figure out how to place everything to
>> include this code. I was about to ask a third question about
>> placement, but I'll work on it myself since I don't know HTML code.
>>
>> I'm trying to learn Dreamweaver instead of Frontpage and hope I can
>> become good with it.
>>
>> Thanks in advance.
>>

>
>
>


Dave,

Did you receive my email?


Reply With Quote


  #10 (permalink)  
Old 04-13-2008, 02:48 AM
Dave Cox
 
Posts: n/a
Diggs:
Default Re: How to make a feedback page

Oh shoot!

I've started on a reply - obv not sent it - apols!!!


"Steve" <nobody@nobody.com> wrote in message
news:Xns9A2FEDC80FE53nobodynobodycom@216.196.97.13 6...
> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
> news:X67kj.62907$h35.52841@newsfe2-gui.ntli.net:
>
>> Hi Stevee,
>> The "Does exactly what is says" is the alternative txt when you put
>> your mouse over the link, so you can chang it to what you want. if you
>> want the picture to be the link to your e-mail. then you need the
>> picture under the <a href> so you would have, using the script I've
>> given you
>>
>> <a href=mailto:'+postemail7962+'"><img scr="image.jpg" alt="describe
>> the link></a>
>>
>> Let me know if you have any problems you can e-mail me at dave at
>> maghuNOSPAMllmtc dot co dot uk removing and replacing the obvious.
>>
>> I always say to people learn HTML, then if something goes wrong, you
>> know what to look for.
>>
>> Happy web building.......
>>
>>
>> "Steve" <nobody@nobody.com> wrote in message
>> news:Xns9A24C6C70C77Cnobodynobodycom@216.196.97.13 6...
>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:yi8hj.34305
>>> $ou3.14082@newsfe4-win.ntli.net:
>>>
>>>> My pleasure.....
>>>>
>>>> "Steve" <nobody@nobody.com> wrote in message
>>>> news:Xns9A1FF108DD04Fnobodynobodycom@216.196.97.13 6...
>>>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in
>>>>> news:MKNgj.30349$KC3.5634@newsfe6-gui.ntli.net:
>>>>>
>>>>>> The footer contains JavaScript designed to hide the e-mail
>>>>>> address
>>> so
>>>>>> that
>>>>>> the spam bots cant pick it up. The numbers are the character
>>>>>> equivalent and are then added together to form the e-mail address
>>>>>>
>>>>>> @ is 64, a full stop 46 The letters a to z start at 97
>>>>>>
>>>>>>
>>>>>> <p align="left">Designed by <script type="text/javascript">
>>>>>>
>>>>>>
>>>>>>
>>>>>> var emailarray7962= new
>>>>>> Array
>>>>> (100,97,118,101,46,99,111,120,64,98,105,114,107,10 0,97,108,101,111
>>>>>> ,114,112,104,101,117,115,46,99,111,46,117,107)
>>>>>>
>>>>>> var postemail7962=''
>>>>>>
>>>>>> for (i=0;i<emailarray7962.length;i++)
>>>>>>
>>>>>> postemail7962+=String.fromCharCode(emailarray7962[i])
>>>>>>
>>>>>>
>>>>>>
>>>>>> document.write('<a title="does exactly what it says"
>>>>>> href="mailto:'+postemail7962+'">Dave Cox</a>')
>>>>>>
>>>>>>
>>>>>>
>>>>>> </script>
>>>>>>
>>>>>>
>>>>>> so when you click on the mail to link, you get the e-mail address.
>>> All
>>>>>> you need to to is copy this code and replace the numbers with your
>>>>>> e-mail address equivelent.
>>>>>>
>>>>>> so if your e-mail address was abc@def.co.uk you would change the
>>> above
>>>>>> to
>>>>>>
>>>>>> 97, 98, 99. 64, 100, 101, 102, 46, 99,11,46,117,107
>>>>>> a b c @ d e f . c o . u
>>> k
>>>>>>
>>>>>> Does that help?
>>>>>>
>>>>>> "Steve" <nobody@nobody.com> wrote in message
>>>>>> news:Xns9A1EDECB621nobodynobodycom@216.196.97.136. ..
>>>>>>> "Dave Cox" <davecox61@nospamtiscali.co.uk> wrote in news:u%
>>> xgj.29628
>>>>>>> $KC3.27725@newsfe6-gui.ntli.net:
>>>>>>>
>>>>>>>> www.maghullmtc.co.uk
>>>>>>>
>>>>>>> I'm not sure how that "script" works, however, I was unable to
>>>>>>> find the email address in the source code.
>>>>>>>
>>>>>>> Can you explain or guide me to a link that will explain it?
>>>>>>>
>>>>>>>
>>>>>>> Thank you very much.
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>> I will have some free time Thurs. night to try this.
>>>>>
>>>>> I'll let you know how I make out.
>>>>>
>>>>> Thanks for your assistance!
>>>>
>>>>
>>>>
>>>
>>> This certainly works as you said. Hopefully the spammers won't find a
>>> way around this.
>>>
>>> I do have two questions and I apologize for them because it comes
>>> from not knowing HTML code.
>>>
>>> I have a picture for 'contact us' where I'd want this code placed.
>>> Where do I place the code to use the picture instead of using "Mail
>>> Us"?
>>>
>>> Do I need the include "does exactly what it says"?
>>>
>>> These two questions should complete my needs. Typically I use tables
>>> to place everything and should figure out how to place everything to
>>> include this code. I was about to ask a third question about
>>> placement, but I'll work on it myself since I don't know HTML code.
>>>
>>> I'm trying to learn Dreamweaver instead of Frontpage and hope I can
>>> become good with it.
>>>
>>> Thanks in advance.
>>>

>>
>>
>>

>
> Dave,
>
> Did you receive my email?
>
>



Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



© Camley Interactive (camley.info) 2008 - all logos and images are copywrite their respective owners.
Proud member of the Camley Interactive Network
All times are GMT. The time now is 09:20 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
Inactive Reminders By Mished.co.uk