开发者

Hosting multiple WebBrowser controls in one window causes sessions to "cross": any solutions?

开发者 https://www.devze.com 2022-12-29 23:48 出处:网络
I have a Windows forms application written in VB.NET where I host multiple WebBrowser controls in the same window.The problem I\'m having is that the session for each WebBrowser control seem to get \"

I have a Windows forms application written in VB.NET where I host multiple WebBrowser controls in the same window. The problem I'm having is that the session for each WebBrowser control seem to get "crossed" when making asynchronous requests, such as when loading images. For instance, I have WebBrowser1 that loads an HTML document and WebBrowser2 that loads another HTML document. WebBrowser1 hosts an image that's served up by an ASHX page and is dependent on the browser session. The problem is that when the request is made for the image in WebBrowser1, the 开发者_高级运维server actually receives the session ID from WebBrowser2. Is there a way to force each WebBrowser control to have a unique session?


The WebBrowser control is essentially just an embedded version of IE. If you launch the regular IE, log into a website, then launch a second copy of IE and visit the website you'll find yourself already logged in with the second instance because IE shares cookies across instances. The same is true of the WebBrowser control. If fact, if you log into a website with IE and then have the WebBrowser control go there you'll find that its been logged in, too, since the cookies are all shared.

So basically, AFAIK, you can't do what you want.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号