On Jun 25, 2:12 pm, Monica <monica.rigg... (AT) coats (DOT) com> wrote:
Quote:
BODY onLoad="document.location.href='d:\index.html'"
location.href = "D:/index.html";}//-- |
Well, you can't seem to make up your mind whether to use backslashes
or forward slashes (in URLs, forward slashes are always the correct
thing to use for indicating directory paths, regardless of what the
local operating system may happen to use), but neither version as you
use it is a proper URL. If this is intended to be used on your local
machine (rather than through the Web), then you need to find the
proper formulation of the path to your other drive as a "file:" URL,
like "file:///D:/index.html" (this might depend on how your system is
set up). You might find that, depending on what browser you're using
and how it's configured there may be security settings that prevent
such access.
If it's on the Web, you need to know how the server is set up to serve
one or both of these drives within a hostname or IP address under HTTP
URLs.
--
Dan