C#SHDocVwIEブラウザサブフレームクロスドメイン処理



C Shdocvw Ie Browser Sub Frame Cross Domain Processing



mshtmlを使用する//埋め込まれた相互運用タイプをFalseに設定する必要があるか、HTMLDocumentClassがエラーを報告します
SHDocVwを使用する

private void button3_Click(object sender, EventArgs e) { SHDocVw.ShellWindows IETabs = new SHDocVw.ShellWindows() foreach (SHDocVw.InternetExplorer ieTab in IETabs) { //textBox1.Text+=ieTab.LocationURL+' ' If (ieTab.LocationURL.Contains('address')) { mshtml.HTMLDocumentClass doc = ieTab.Document as mshtml.HTMLDocumentClass object index = 0 mshtml.IHTMLWindow2 frameWindow = doc.frames.item(ref index) as mshtml.IHTMLWindow2 / / Add the sub-frame to an A document, operate on A (cross-domain problem processing) mshtml.HTMLDocumentClass frameDoc = CrossFrameIE.GetDocumentFromWindow(frameWindow) as HTMLDocumentClass mshtml.IHTMLScriptElement script = frameDoc.createElement('script') as mshtml.IHTMLScriptElement //mshtml.IHTMLScriptElement script = frameWindow.createElement('script') as mshtml.IHTMLScriptElement decimal value = 23.5M script.text = '$('.orderWeight').val('' + value + '')' mshtml.HTMLBody frameBody = frameDoc.body as mshtml.HTMLBody frameBody.appendChild((mshtml.IHTMLDOMNode)script) //frame.execScript('cd(window.frames[0])', 'javascript')//Use JS to switch to the target frame //twitter way to change the domain name test is invalid, follow-up change //javascript:void((function(){document.open()document.domain=''+ document.domain + ''document.close()})()) //mshtml.HTMLElementCollection inputs //inputs = doc2.all.tags('INPUT') as mshtml.HTMLElementCollection //var submit = doc2.getElementById('su') //mshtml.IHTMLElement element = inputs.item('submit', 0) as mshtml.IHTMLElement //element.click() } } }

-------------------------------------------------- -------------------------------------------------- -------------------------------------------------- --------------



以下は牛のコードを引用しています。結局、GUIDを思い出せませんが、アドレスを忘れてしまいました。コードが少し変更されました。

public class CrossFrameIE { // Returns null in case of failure. public static IHTMLDocument2 GetDocumentFromWindow(IHTMLWindow2 htmlWindow) { if (htmlWindow == null) { return null } // First try the usual way to get the document. try { IHTMLDocument2 doc = htmlWindow.document return doc } catch (COMException comEx) { // I think COMException won't be ever fired but just to be sure ... if (comEx.ErrorCode != E_ACCESSDENIED) { return null } } catch (System.UnauthorizedAccessException) { } catch { // Any other error. return null } // At this point the error was E_ACCESSDENIED because the frame contains a document from another domain. // IE tries to prevent a cross frame scripting security issue. try { // Convert IHTMLWindow2 to IWebBrowser2 using IServiceProvider. IServiceProvider sp = (IServiceProvider)htmlWindow // Use IServiceProvider.QueryService to get IWebBrowser2 object. Object brws = null sp.QueryService(ref IID_IWebBrowserApp, ref IID_IWebBrowser2, out brws) // Get the document from IWebBrowser2. SHDocVw.IWebBrowser2 browser = (SHDocVw.IWebBrowser2)(brws) return browser.Document as HTMLDocumentClass } catch { } return null } private const int E_ACCESSDENIED = unchecked((int)0x80070005L) private static Guid IID_IWebBrowserApp = new Guid('0002DF05-0000-0000-C000-000000000046') private static Guid IID_IWebBrowser2 = new Guid('D30C1661-CDAF-11D0-8A3E-00C04FC9E26E') } // This is the COM IServiceProvider interface, not System.IServiceProvider .Net interface! [ComImport(), ComVisible(true), Guid('6D5140C1-7436-11CE-8034-00AA006009FA'), InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)] public interface IServiceProvider { [return: MarshalAs(UnmanagedType.I4)] [PreserveSig] int QueryService(ref Guid guidService, ref Guid riid, [MarshalAs(UnmanagedType.Interface)] out object ppvObject) }