Hi,
Recently I update the EO.WebBrowser from 3.0.113.1 to the 15.2.10.0.
I found that in some cases the cookies are not sent to our webpages.
I add the cookies in the WebView.BeforeRequestLoad event.
Code: C#
_webBrowserView.BeforeRequestLoad += (sender, args) =>
{
args.Request.Cookies.Add(cookie1);
args.Request.Cookies.Add(cookie2);
};
The codes work fine with the EO.WebBrowser 3.0.113.1.
But after upgraded, some pages load as if the cookies were never sent.
Are there any changes about the cookies in the new EO.WebBrowser?