danke für eure infos. dann wird es wohl doch schwieriger als gedacht. könntest du mir bitte kurz einen javascript ansatz geben? verstehe das mit parent.document nich so ganz.
Tja, es geht doch nicht ... das ging wohl früher mal:
iframe1.html
<body>
<h1>iframe-Zugriff</h1>
<form name="form1"><input name="line1"/></form>
<iframe width="400" height="300" src="iframe2.html">
Sorry, your browser dont support iframes.
</iframe>
</body>
iframe2.html
<body>
<h1>inner-Frame</h1>
<form name="form2">
<input name="line2"/>
<input type="button" value="Ok"
onclick="parent.window.document.forms['form1'].line1.value = document.form2.line2.value; "/>
</form>
</body>
Wenn das Dokument iframe2.html nicht in der gleichen Domain liegt, bekomme ich eine "permission denied". Egal on ich auf das Formular oder nru eine js-Funktion.