在执行wb.Dispose()之后,我遇到了一个显示“Windows安全警告 - Cookie”的cookie的问题。
我的代码
string url = "myweb.com";
WebBrowser wb = new WebBrowser();
wb.Navigate(url);
while (wb.ReadyState != WebBrowserReadyState.Complete) { Application.DoEvents(); }
//Fill a form
//Invoke Button
wb.Dispose();
问题: 我不想使用那个cookie,我只是想以最快的方式跳过它,所以这个msg不会弹出。
试过
1)我尝试将IE设置更改为“覆盖自动cookie处理”并将第一个+第三方cookie设置为“阻止”
2)
webBrowser.Navigate("javascript:void((function(){var a,b,c,e,f;f=0;a=document.cookie.split('; ');for(e=0;e<a.length&&a[e];e++){f++;for(b='.'+location.host;b;b=b.replace(/^(?:%5C.|[^%5C.]+)/,'')){for(c=location.pathname;c;c=c.replace(/.$/,'')){document.cookie=(a[e]+'; domain='+b+'; path='+c+'; expires='+new Date((new Date()).getTime()-1e11).toGMTString());}}}})())")`
3)更改本地策略关闭安全设置检查功能以启用
答案 0 :(得分:1)
我认为您已在Cookie的高级设置中选择了“覆盖自动Cookie处理”模式。您可以在“互联网选项” - >“隐私” - >“高级”中查看。 Managing Cookies in Internet Explorer 9
提供了帮助