Ian Abbott wrote:
> For example, a recursive retrieval on a page like this:
>
> <html>
> <body>
> <script>
> <a href="foo.html">foo</a>
> </script>
> </body>
> </html>
>
> will retrieve "foo.html", regardless of the <script>...</script>
> tags.
We seem to be talking about two completely different things, Ian. A page
that looks like this:
<html>
<head>
<script>
top.location = "foo.html";
</script>
</head>
<body>
This page transfers to foo.
</body>
</html>
won't retrieve foo.html.
That's what I have been trying to get across.
Tony