Hello,
I have a project where we are trying to load a thirdparty site into an IFRAME inside EO WebBrowser. We are trying to override/ignore the X-Frame-Options SAMEORIGIN security setting but the browser control does not seem to respect the fact we have EnableWebSecurity=False and EnableXSSAuditor=False set in the code.
We are using this code to set up the browser --
Dim bo As New BrowserOptions
bo.EnableWebSecurity = False
bo.EnableXSSAuditor = False
EO.WebEngine.Engine.Default.Options.SetDefaultBrowserOptions(bo)
Dim wv As New WebView
wv.SetOptions(bo)
WebControl1.WebView = wv
When we attempt to load the site into the IFRAME we get the following "Refused to display" error
Is this a bug in webview or is there another option I need to toggle to allow the IFRAME to display?
Thanks
Ron