When you paste an image with an absolute source path on a Web page from Internet Explorer to FrontPage 2002, FrontPage recognizes the path as an absolute path to the image. When an absolute path is used in FrontPage, the path is left as absolute, so that the references to the images are not broken. Additionly, when a base location is set in the properties of the page, FrontPage also makes the path absolute.
Absolute Paths
In the following two examples of an absolute path, you are not prompted to save the image if you copy the 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 the 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 you copy the file from Internet Explorer, FrontPage prompts you to save the embedded image file:
<html>
<head>
<title>Example 3</title>
</head>
<body>
<img src="/images/image.gif">
</body>
</html>