Posted by alessandro.bernardini.1979 on 10/24/07 09:32
I found that the use of frames works well for my purpose of opening
pdf files as a part of the browsers-window.
Look at following code:
----------------------------------------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Eingebettete Frames definieren</title>
</head>
<body>
<h1>Fenstergucker</h1>
<p>Gucken Sie mal SELFHTML im Fenster an:</p>
<iframe src="http://www.rz.uni-osnabrueck.de/Zum_Nachlesen/
Skripte_Tutorials/WebPublishing/html.pdf" width="90%" height="400"
name="SELFHTML_in_a_box">
<p>Ihr Browser kann leider keine eingebetteten Frames anzeigen:
Sie können die eingebettete Seite über den folgenden
Verweis
aufrufen: <a href="../../../index.htm">SELFHTML</a></p>
</iframe>
</body>
</html>
-----------------------------------------------------------------------------------
it works.
I now have two questions:
a) how can i set the width and height dynamically, referencing to the
actual windows size ?
b)whe disappears the link to the pdf file if i save the html to the
hard disk (I use netscape).
In fact, if i save the listed html file i become:
____________________________________________________________
<body>
<h1>Fenstergucker</h1>
<p>Gucken Sie mal SELFHTML im Fenster an:</p>
<iframe src="test-saved_files/html.html" width="90%" height="400"
name="SELFHTML_in_a_box">
<p>Ihr Browser kann leider keine eingebetteten Frames
anzeigen:
Sie k&ouml;nnen die eingebettete Seite &uuml;ber den
folgenden Verweis
aufrufen: <a>SELFHTML</a></p>
</iframe>
</body></html>
_____________________________________________________________
loosing the link.
What can i do ?
THX
Navigation:
[Reply to this message]
|