He he... Thanks...
Yeah, the whole spam thing really just sucks a lot. I think this is why
more and more sites have feedback forms instead of mailto e-mail addresses.
You'll see many sites that also have things like:
E-mail us at ray AT mydomain DOT com
But for a professional site, you can't really do any nonsense like that. I
think you may be able to use a client side solution like this:
<script language="javascript">
window.open('mail'+'to:'+'person'+'@'+'domain'+'.c om');
</script>
You could split up that string as much as you like or encrypt and decrypt,
etc.
Ray at work
"Johnny Carson" <> wrote in message
news: om...
> >
> > If IsEmpty(sTo) Then sTo = Request.Querystring("to")
> > If IsEmpty(sDomain) Then sDomain = Request.Querystring("domain")
> > sEmailAddress = sTo & "@" & sDomain
> > Response.Redirect "mailto:" & sEmailAddress
> >
> > I didn't do it with the lines commented out the way that you have it,
> > though. You have the querystring lines commented out in your PHP code.
> >
> > I don't know of any way to not have a blank browser window return. I
> > understand your pain about trying to hide e-mail addresses from spam
> > crawlers...
> >
> <SNIP>
>
> Thanks, that worked as do all your tips/suggestions/solutions 
>
> I've tried munging but they can now decode those.
>
> I'm still looking for a better way. If I find something better, I'll
> be sure to post it here for you.
>
> JC