HREF code - On Submit to stop spam
HI
I have a feedback form with a submit button that send an e mail to us.
To stop spam mails I have (from www.siteup.com) got an encloded e mail
address that works fine - you can see the e mail address and the "mailto"
works fine but if you go into view source the mail address is not there.
Good so far.
So, question - how can I get this code so that it's behind the submit button
this is the code
<A HREF="mailto:info [at] ukoutdoorpursuits.co.uk">
info [at] ukoutdoorpursuits.co.uk</A>
I am trying to take off my e mail address from the form but can't work out
how to get this code to work like the e mail address on submit
Thank you
--
Wayne
Manchester, England.
Re: HREF code - On Submit to stop spam
You can't if you want the FP extensions to process the form.
--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
"Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
news:34E189AC-5BDD-4544-946C-299C555865CA [at] microsoft.com...
> HI
>
> I have a feedback form with a submit button that send an e mail to us.
>
> To stop spam mails I have (from www.siteup.com) got an encloded e mail
> address that works fine - you can see the e mail address and the "mailto"
> works fine but if you go into view source the mail address is not there.
> Good so far.
>
> So, question - how can I get this code so that it's behind the submit button
>
> this is the code
>
> <A HREF="mailto:info [at] ukoutdoorpursuits.co.uk">
>
> info [at] ukoutdoorpursuits.co.uk</A>
>
> I am trying to take off my e mail address from the form but can't work out
> how to get this code to work like the e mail address on submit
>
> Thank you
> --
> Wayne
> Manchester, England.
>
Re: HREF code - On Submit to stop spam
Thank you I will just use the code on the contact us page.
Is there a way to do something like this (hide it from spamers) on a
feedback form
Thank you
--
Wayne
Manchester, England.
"Thomas A. Rowe" wrote:
> You can't if you want the FP extensions to process the form.
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
>
> http://www.Ecom-Data.com
> ==============================================
>
>
> "Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
> news:34E189AC-5BDD-4544-946C-299C555865CA [at] microsoft.com...
> > HI
> >
> > I have a feedback form with a submit button that send an e mail to us.
> >
> > To stop spam mails I have (from www.siteup.com) got an encloded e mail
> > address that works fine - you can see the e mail address and the "mailto"
> > works fine but if you go into view source the mail address is not there.
> > Good so far.
> >
> > So, question - how can I get this code so that it's behind the submit button
> >
> > this is the code
> >
> > <A HREF="mailto:info [at] ukoutdoorpursuits.co.uk">
> >
> > info [at] ukoutdoorpursuits.co.uk</A>
> >
> > I am trying to take off my e mail address from the form but can't work out
> > how to get this code to work like the e mail address on submit
> >
> > Thank you
> > --
> > Wayne
> > Manchester, England.
> >
>
>
>
Re: HREF code - On Submit to stop spam
Not if you use the FP extensions to process the form.
If you write your own form handler (or modify a pre-written script) then
the email address can be incorporated in the script, and never be seen
by anyone viewing the website.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
"Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
news:0EDD7BA4-E5D4-482C-81F2-B95B1F197FA5 [at] microsoft.com:
> Thank you I will just use the code on the contact us page.
>
> Is there a way to do something like this (hide it from spamers) on a
> feedback form
>
> Thank you
> --
> Wayne
> Manchester, England.
>
>
>
> "Thomas A. Rowe" wrote:
>
> > You can't if you want the FP extensions to process the form.
> >
> > --
> > ==============================================
> > Thomas A. Rowe
> > Microsoft MVP - FrontPage
> >
> > http://www.Ecom-Data.com
> > ==============================================
> >
> >
> > "Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
> > news:34E189AC-5BDD-4544-946C-299C555865CA [at] microsoft.com...
> > > HI
> > >
> > > I have a feedback form with a submit button that send an e mail to us.
> > >
> > > To stop spam mails I have (from www.siteup.com) got an encloded e mail
> > > address that works fine - you can see the e mail address and the "mailto"
> > > works fine but if you go into view source the mail address is not there.
> > > Good so far.
> > >
> > > So, question - how can I get this code so that it's behind the submit button
> > >
> > > this is the code
> > >
> > > <A HREF="mailto:info [at] ukoutdoorpursuits.co.uk">
> > >
> > > info [at] ukoutdoorpursuits.co.uk</A>
> > >
> > > I am trying to take off my e mail address from the form but can't work out
> > > how to get this code to work like the e mail address on submit
> > >
> > > Thank you
> > > --
> > > Wayne
> > > Manchester, England.
> > >
> >
> >
> >
Re: HREF code - On Submit to stop spam
> Is there a way to do something like this (hide it from spamers) on a
> feedback form
You'd need to post the form to another page that handles to emailing via
script and isn't visible to the spammers.
If you're on a Windows server this is easy to do with asp or aps.net.
--
Ian Haynes
MS MVP
http://www.ew-resource.co.uk
Re: HREF code - On Submit to stop spam
> this is easy to do
Ha Ha, sorry but I'm an access DB programmer (and for some reason they have
told me to run the websites - OMG) - trying really hard to get my head around
web sites though.
Is there a web page that gives a step by step for this "easy" process
--
Wayne
Manchester, England.
"Ian Haynes" wrote:
> > Is there a way to do something like this (hide it from spamers) on a
> > feedback form
>
> You'd need to post the form to another page that handles to emailing via
> script and isn't visible to the spammers.
>
> If you're on a Windows server this is easy to do with asp or aps.net.
>
>
> --
> Ian Haynes
> MS MVP
> http://www.ew-resource.co.uk
>
Re: HREF code - On Submit to stop spam
Do a search for:
Sending Email via CDOSYS or Sending Email via CDONTS
--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
"Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
news:5875B19A-9DBA-4328-846E-63CBFCDF47CF [at] microsoft.com...
>> this is easy to do
>
> Ha Ha, sorry but I'm an access DB programmer (and for some reason they have
> told me to run the websites - OMG) - trying really hard to get my head around
> web sites though.
>
> Is there a web page that gives a step by step for this "easy" process
>
>
> --
> Wayne
> Manchester, England.
>
>
>
> "Ian Haynes" wrote:
>
>> > Is there a way to do something like this (hide it from spamers) on a
>> > feedback form
>>
>> You'd need to post the form to another page that handles to emailing via
>> script and isn't visible to the spammers.
>>
>> If you're on a Windows server this is easy to do with asp or aps.net.
>>
>>
>> --
>> Ian Haynes
>> MS MVP
>> http://www.ew-resource.co.uk
>>
Re: HREF code - On Submit to stop spam
For "classic" asp, see http://quadcomm.com/tips/sendCDOSYSmail.asp
Requires asp on Windows server.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
"Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
news:5875B19A-9DBA-4328-846E-63CBFCDF47CF [at] microsoft.com:
> > this is easy to do
>
> Ha Ha, sorry but I'm an access DB programmer (and for some reason they have
> told me to run the websites - OMG) - trying really hard to get my head around
> web sites though.
>
> Is there a web page that gives a step by step for this "easy" process
>
>
> --
> Wayne
> Manchester, England.
>
>
>
> "Ian Haynes" wrote:
>
> > > Is there a way to do something like this (hide it from spamers) on a
> > > feedback form
> >
> > You'd need to post the form to another page that handles to emailing via
> > script and isn't visible to the spammers.
> >
> > If you're on a Windows server this is easy to do with asp or aps.net.
> >
> >
> > --
> > Ian Haynes
> > MS MVP
> > http://www.ew-resource.co.uk
> >
Re: HREF code - On Submit to stop spam
Perfect - I found this from your serch string
http://www.asp101.com/articles/john/cdosmtprelay/default.asp
My type of site - for idiots like me :-)
Thanks for the tip
--
Wayne
Manchester, England.
"Thomas A. Rowe" wrote:
> Do a search for:
>
> Sending Email via CDOSYS or Sending Email via CDONTS
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
>
> http://www.Ecom-Data.com
> ==============================================
>
>
> "Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
> news:5875B19A-9DBA-4328-846E-63CBFCDF47CF [at] microsoft.com...
> >> this is easy to do
> >
> > Ha Ha, sorry but I'm an access DB programmer (and for some reason they have
> > told me to run the websites - OMG) - trying really hard to get my head around
> > web sites though.
> >
> > Is there a web page that gives a step by step for this "easy" process
> >
> >
> > --
> > Wayne
> > Manchester, England.
> >
> >
> >
> > "Ian Haynes" wrote:
> >
> >> > Is there a way to do something like this (hide it from spamers) on a
> >> > feedback form
> >>
> >> You'd need to post the form to another page that handles to emailing via
> >> script and isn't visible to the spammers.
> >>
> >> If you're on a Windows server this is easy to do with asp or aps.net.
> >>
> >>
> >> --
> >> Ian Haynes
> >> MS MVP
> >> http://www.ew-resource.co.uk
> >>
>
>
>
Re: HREF code - On Submit to stop spam
Thanks for that it look like something even I can use.
--
Wayne
Manchester, England.
"Ronx" wrote:
> For "classic" asp, see http://quadcomm.com/tips/sendCDOSYSmail.asp
> Requires asp on Windows server.
> --
> Ron Symonds - Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> http://www.rxs-enterprises.org/fp
>
>
>
>
> "Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
> news:5875B19A-9DBA-4328-846E-63CBFCDF47CF [at] microsoft.com:
>
> > > this is easy to do
> >
> > Ha Ha, sorry but I'm an access DB programmer (and for some reason they have
> > told me to run the websites - OMG) - trying really hard to get my head around
> > web sites though.
> >
> > Is there a web page that gives a step by step for this "easy" process
> >
> >
> > --
> > Wayne
> > Manchester, England.
> >
> >
> >
> > "Ian Haynes" wrote:
> >
> > > > Is there a way to do something like this (hide it from spamers) on a
> > > > feedback form
> > >
> > > You'd need to post the form to another page that handles to emailing via
> > > script and isn't visible to the spammers.
> > >
> > > If you're on a Windows server this is easy to do with asp or aps.net.
> > >
> > >
> > > --
> > > Ian Haynes
> > > MS MVP
> > > http://www.ew-resource.co.uk
> > >
>
>
Re: HREF code - On Submit to stop spam
I have found ASP101 to be a great site with easy to follow examples.
--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
"Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
news:F04D3335-FBDA-4BB8-8C6D-D07AEA1C9706 [at] microsoft.com...
> Perfect - I found this from your serch string
> http://www.asp101.com/articles/john/cdosmtprelay/default.asp
>
> My type of site - for idiots like me :-)
>
> Thanks for the tip
>
> --
> Wayne
> Manchester, England.
>
>
>
> "Thomas A. Rowe" wrote:
>
>> Do a search for:
>>
>> Sending Email via CDOSYS or Sending Email via CDONTS
>>
>> --
>> ==============================================
>> Thomas A. Rowe
>> Microsoft MVP - FrontPage
>>
>> http://www.Ecom-Data.com
>> ==============================================
>>
>>
>> "Wayne-I-M" <WayneIM [at] discussions.microsoft.com> wrote in message
>> news:5875B19A-9DBA-4328-846E-63CBFCDF47CF [at] microsoft.com...
>> >> this is easy to do
>> >
>> > Ha Ha, sorry but I'm an access DB programmer (and for some reason they have
>> > told me to run the websites - OMG) - trying really hard to get my head around
>> > web sites though.
>> >
>> > Is there a web page that gives a step by step for this "easy" process
>> >
>> >
>> > --
>> > Wayne
>> > Manchester, England.
>> >
>> >
>> >
>> > "Ian Haynes" wrote:
>> >
>> >> > Is there a way to do something like this (hide it from spamers) on a
>> >> > feedback form
>> >>
>> >> You'd need to post the form to another page that handles to emailing via
>> >> script and isn't visible to the spammers.
>> >>
>> >> If you're on a Windows server this is easy to do with asp or aps.net.
>> >>
>> >>
>> >> --
>> >> Ian Haynes
>> >> MS MVP
>> >> http://www.ew-resource.co.uk
>> >>
>>
>>
>>