Page is a not externally linkable
pageoneresults - 2:59 pm on May 20, 2006 (gmt 0)
Place the above directive (Robots META Tag) right after the <head> of your document. That should prevent those bots that obey the protocol from indexing and following links on the page. Now, if you want to allow the links on that page to be followed, you might do this... Both Google and MSN have developed specific Robots META Tags that you can use to keep just their bots away from those pages. For Googlebot For MSNBot There are other robots terms that you can use to manipulate spider behavior.
Instructions for utilizing the Robots META Tag <meta name="robots" content="none"> <html>
<head>
<meta name="robots" content="none">
</head><html>
<head>
<meta name="robots" content="noindex, follow">
</head><html>
<head>
<meta name="googlebot" content="none">
</head><html>
<head>
<meta name="msnbot" content="none">
</head>