to expand on tclaremont's excellent suggestion:
you can use refindnocase() to search the filecontent returned
by cfhttp
call:
<cfset myurl = "
http://www.yourwebsite.com">
<cfhttp url="
http://www.VisitorsPage"
method="GET" result="Foobar"
resolveurl="yes" getasbinary="auto"></cfhttp>
<cfif
foobar.Statuscode is "200 OK">
<cfif refindnocase('<a [^>]*href[^>]*' &
replace(myurl, '.', '\.',
'all') & '[^>]*>(.*?)<\/a>',
Foobar.filecontent)>
link exists
<cfelse>
no link...
</cfif>
<cfelse>
connection error... or requested web page does not exist...
</cfif>
of course, if the www.VisitorsPage site is sneaky and has the
link to
your site in page's code, but hides it with css/javascript,
it's gonna
be tricky to uncover using regexp... better just go and look
at their
website...
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/