From: Steve Pugh on
Starting with the following simple html web page I dragged locally this
web page file from WinExplorer onto IntExp.

Unfortunately the referenced pictures were NOT shown in browser although the sub folder \images\"
und the picture files exists.

Same with the referenced other web page which is NOT loaded as intended.

How can I reference otherwise other files with relative path from the same source?



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
</head>
<body>
link:<P>
<A target="content" href="subpage.html"><IMG SRC="images/mypic.png" ALT="sometext"></A><br>
<iframe src="intro.html" width="100%" height="100%" name="content">
Your browser does not support iframes
</iframe>
</body>
</html>


Steve