CAUSE
When an image with an absolute source path on a web page is pasted from Internet Explorer to FrontPage 2000, FrontPage recognizes the path as an absolute path to the image. When absolute paths are used in FrontPage, the paths are left as absolute, so the references to the images will not be broken.
Absolute Paths
The following two absolute path examples do not prompt you to save the image if you copy an image from Internet Explorer and paste it into FrontPage.
For the first example, the source page uses absolute URLs for the image:
<html>
<head>
<title>Example 1</title>
</head>
<body>
<img src="http://example.microsoft.com/images/image.gif">
</body>
</html>
In this second example, the source page has a base location specified in the <head></head> section:
<html>
<head>
<title>Example 2</title>
<base href="http://example.microsoft.com">
</head>
<body>
<img src="/images/image.gif">
</body>
</html>
Relative Paths
If a page has an image source as a relative path and the file is copied from Internet Explorer, FrontPage prompts you to save the embedded file.
<html>
<head>
<title>Example 3</title>
</head>
<body>
<img src="/images/image.gif">
</body>
</html>