Bildschirmauflösung
Hi Andy vielen Dank für deine Antwort!
Hab das so gemacht wie du beschrieben hast. Bekomme aber leider keine Anzeige!
Kannst du mir nochmal helfen?
Hab es so eingebunden
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
function catchRes()
{
hoehe = screen.height;
breite = screen.width;
document.forms.myform.hoehe.value = hoehe;
document.forms.myform.breite.value = breite;
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000"onLoad = "catchRes();">
<form name="form1" method="post" action="">
<table width="100%" border="0">
<tr>
</tr>
<tr>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="34%">wie hoch ist die Auflösung </td>
<td width="26%"border="1">
<input type="text" name="myform.hoehe">
</td>
<td width="6%"> </td>
</tr>
<tr>
<td width="2%"> </td>
<td width="2%"> </td>
<td width="34%">deines Monitors?</td>
<td width="26%">
<input type="text" name="breite">
</td>
</tr>
</table>
</form>
</body>
</html>