zoidby: <object> automatische Höhendarstellung

Beitrag lesen

halihalo,

ich möchte auf meiner website den inhalt eines autoindexierten ordners der
auf meinem webspace liegt anzeigen. dabei soll sich die breite und höhe des
angezeigten ordners auf die maximale größe des browserfensters anpassen und
darf auch nicht darüber hinausgehen. lässt sich das mit einem object mit
irgendwelchen tricks machen? wenn nicht gibt es eine möglichkeit mit z.b.
java oder php?

und hier das grundgerüst meiner website:

  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">  
<head>  
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />  
<style type="text/css">  
  
body {  
margin: 20px;  
padding: 0px;  
background: #333333;  
font: 0.9em/1.3em verdana, sans-serif;  
}  
  
#tabmenu {  
color: #000000;  
border-bottom: 2px solid black;  
margin: 12px 0px 0px 0px;  
padding: 0px;  
z-index: 1;  
padding-left: 10px  
}  
  
#tabmenu li {  
display: inline;  
overflow: hidden;  
list-style-type: none;  
}  
  
#tabmenu a, a.active {  
color: #000000;  
background: #669900;  
font: bold 1em arial, sans-serif;  
border: 2px solid black;  
padding: 2px 5px 1px 5px;  
margin: 0;  
text-decoration: none;  
}  
  
#tabmenu a.active {  
color: #669900;  
background: #4d4d4d;  
border-bottom: 2px solid #4d4d4d;  
}  
  
#tabmenu a:hover {  
color: #000000;  
background: #f59f1a;  
}  
  
#tabmenu a.active:hover {  
background: #4d4d4d;  
color: #f59f1a;  
}  
  
#tnetnoc {  
font: 0.9em/1.3em verdana, sans-serif;  
text-align: justify;  
background: #ffffff;  
border: 2px solid black;  
border-top: none;  
z-index: 2;  
}  
  
</style>  
</head>  
<body>  
  
<ul id="tabmenu">  
<li><a class="active" href="index.html">Main</a></li>  
<li><a href="text.html">Text</a></li>  
<li><a href="bla.html">Bla, Bla</a></li>  
</ul>  
<div id="tnetnoc">  
  
  
<object data="/ordner/" type="text/html" width="100%" height="100%"></object>  

</div>
</body>
</html>

cucu
zoidby