views:

127

answers:

3

I am writing an IE plugin that wrap phone numbers in a link that connects to a phone system and dials that number when clicked. I am accomplishing this by using DocumentComplete event.

//using SHDocVw.WebBrowser
webBrowser.DocumentComplete += new DWebBrowserEvents2_DocumentCompleteEventHandler(this.OnDocumentComplete);

The problem is I cannot seem to access elements inside of frame and iframe elements.

Question: How do you manipulate data inside frame and iframe elements in IE using a Browser Helper Object?

A: 

the only ways I can think of when manipulating data in an iframe is to give it a querystring or you might be able to do some sort of postback (async maybe?). As to retrieve the data from that iframe would be in the same way. And about frames, they are deprecated to my knowledge so I would recommend looking into changing them.

Joakim
+1  A: 

You can't walk inside the frame, but DWebBrowserEvents2 should fire a document complete event for each frame. You just have to keep track of them all. Not sure how that translates to managed code.

Depending on your requirements, it would be a lot easier to just write an Accelerator. They're IE8+ only, however...

jeffamaphone
The requirement are every phone number on any page needs to be a be a link and maybe displaying all found phone numbers somewhere.I don't think this is possible with an Accelerator. I would actually prefer using an accelerator because it would make sure everyone using it was upgraded to IE8.
Kenneth J
+2  A: 

First, some caveats. Generally speaking, add-ons of this nature (e.g. those that run on all pages and scan all content) have a major performance impact and are likely to result in users removing or disabling the add-on when they see the performance impact it entails. It further appears that you're writing your code in .NET, which is also strongly discouraged due to the performance impact.

Getting the contents of a cross-domain subframe is non-trivial because you will get an Access Denied by default. The reason is that the cross-domain security restriction that exists for JavaScript is also applied when your add-on attempts to get the cross-domain content.

To get the cross-domain content from the top-level page, you must jump through some hoops which are non-trivial, particularly in .NET. Your best bet is to just run your code on each frame's DocumentComplete event, as Jeff observed.

If you must run your code only once, from the top-level page, then you can do so with a technique like this one:

http://support.microsoft.com/default.aspx?scid=kb;en-us;196340

// &lpDocDisp is the dispatch pointer for the document
IHTMLDocument2* pDocument;
HRESULT hr = lpDocDisp->QueryInterface(IID_IHTMLDocument2, (void**)&pDocument);
if (FAILED(hr))
    return hr;

long iCount = 0;

// Now, check for subframes
// http://support.microsoft.com/default.aspx?scid=kb;en-us;196340
IOleContainer* pContainer;

// Get the container
hr = lpDocDisp->QueryInterface(IID_IOleContainer, (void**)&pContainer);
if (FAILED(hr) || (NULL == pContainer)){
    OutputDebugString("[AXHUNTER] Failed to get container\n");
    return hr;
}

LPENUMUNKNOWN  pEnumerator;

// Get an enumerator for the frames
hr = pContainer->EnumObjects(OLECONTF_EMBEDDINGS, &pEnumerator);
pContainer->Release();

if (FAILED(hr) || (NULL == pEnumerator)){
    OutputDebugString("[AXHUNTER] Failed to get enumerator\n");                 
    return hr;
}

IUnknown* pUnk;
ULONG uFetched;

// Enumerate all the frames
for (UINT i = 0; S_OK == pEnumerator->Next(1, &pUnk, &uFetched); i++)
{
    assert(NULL != pUnk);
    IWebBrowser2* pBrowser;
    hr = pUnk->QueryInterface(IID_IWebBrowser2, (void**)&pBrowser);
    pUnk->Release();

    if (SUCCEEDED(hr))
    {
        LPDISPATCH pSubDoc = NULL;
        hr = pBrowser->get_Document(&pSubDoc);
        if (SUCCEEDED(hr) && (NULL != pSubDoc)){
            CrawlPage(pSubDoc, ++iNested);
            pSubDoc->Release();
        }

        pBrowser->Release();
    }
    else
    {
        OutputDebugString("[AXHUNTER] Cannot get IWebBrowser2 interface\n");
    }
}


pEnumerator->Release();
EricLaw -MSFT-
+1 Great points. Also, see a .Net example at http://social.msdn.microsoft.com/forums/en-US/winforms/thread/38126c55-bc55-40ae-9b42-3a2086341e4c
Garett