Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Error message when you call the window.open method from a Web page to open an active document in Internet Explorer: "permission denied"


View products that this article applies to.

Symptoms

Consider the following scenario. You call the window.open method from a Web page to open an active document, such as a .doc file, an .xls file, or a .pdf file. You try to access the child window by using a script. In this scenario, you may receive the following error message in Microsoft Internet Explorer 6 or in Windows Internet Explorer 7:
permission denied

↑ Back to the top


Cause

When Internet Explorer uses an Active Document server, such as Microsoft Word, Microsoft Excel, or Adobe Reader, to display a document in an Internet Explorer window, the page contains only the active document window and not the MSHTML. Therefore, the window object that is returned by the window.open method is disconnected and is invalidated. Only the IWebBrowser2 browser frame and the active document remain in the new window. Because the methods of the IWebBrowser2 interface are not exposed to scripts, you cannot call the methods of the browser frame by using a script.

↑ Back to the top


Status

This behavior is by design.

↑ Back to the top


More information

Steps to reproduce the behavior

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
  1. Create a text file that is named Test.html.
  2. Copy and paste the following code into the Test.html file.
    <html>
        <HEAD>
            <SCRIPT language="JavaScript">
          
                    var subWin;
            
                    function openSubView(){
                        
                        subWin = window.open("test.doc");
                    }
    
                    function closeSubView(){
                    if(subWin!=null)
                           {
    			subWin.close();
                            subWin = null;
                           }
    
                    }
    
            </SCRIPT>
        </HEAD>
        <BODY>
           
                    <INPUT type="button" value="Open doc window" onClick="openSubView()" ID="Button1" NAME="Button1">
                     <INPUT type="button" value="Close doc window" onClick="closeSubView()" ID="Button2" NAME="Button2">
            
        </BODY>
    </html> 
    
  3. Create a Word document that is named Test.doc.
  4. Type Hello World in the Test.doc file.
  5. Open Test.html in Internet Explorer 6 or in Internet Explorer 7.
  6. Click Open doc window.

    Notice that the Word document is loaded in the child window.
  7. Click Close doc window to close the child window.

    Notice that you experience the problem that is mentioned in the "Symptoms" section.

↑ Back to the top


Keywords: KB934365, kbprb, kberrmsg, kbinfo, kbtshoot, kbwebbrowser

↑ Back to the top

Article Info
Article ID : 934365
Revision : 3
Created on : 9/22/2011
Published on : 9/22/2011
Exists online : False
Views : 300