Markus: Error: Access is denied.

Beitrag lesen

Nein, ich stelle mir da nichts vor. Wenn es sich um ein Client-Problem mit HTML oder Javascript handelt, dann zeige bitte validen, vollständigen Beispielcode, mit dem man das Problem nachvollziehen kann. Alles andere ist weder hilfreich noch zielführend.

  
<script>  
  var features  = 'width =' + (screen.availWidth - 200 )+  
                  ',height =' + (screen.availHeight - 100) +  
                  ',toolbar=no, status=no, menubar=no, left=100, top=50, resizable';  
  newWindow = window.open('','',features);  
  newWindow.document.writeln('<html><head><title>Personal Summary Statement</title>');  
  newWindow.document.writeln('<style type="text/css">body { margin:0px; }</style></head>');  
  newWindow.document.writeln('<body>');  
  newWindow.document.writeln('<iframe src="/result.pdf" height="100%" width="100%"></iframe>' );  
  newWindow.document.writeln('</body></html>');  
  newWindow.document.close();  
</script>