winform webbroswer设置cookie方法
程序员文章站
2022-06-08 17:34:22
...
[DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern bool InternetSetCookie(string lpszUrlName, string lbszCookieName, string lpszCookieData);
使用api设置就能实现,在需要设置webbrowser的cookie,访问网站。
转载于:https://my.oschina.net/FoolFool/blog/528814