c# – 在WebBrowser中使用CookieContainer中的cookie

前端之家收集整理的这篇文章主要介绍了c# – 在WebBrowser中使用CookieContainer中的cookie前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有什么办法,我可以实际使用Cookie容器(从以前从WebRequest取得),并使用它们在WebBrowser控件中?如果是这样,我该怎么办?这是一个 Winforms应用程序在C#.

解决方法

你需要使用 InternetSetCookie.这是一个 sample
public partial class WebBrowserControl : Form
{
     private String url;

     [DllImport("wininet.dll",CharSet = CharSet.Auto,SetLastError = true)]
     public static extern bool InternetSetCookie(string lpszUrlName,string    lbszCookieName,string lpszCookieData);

     public WebBrowserControl(String path)
     {
          this.url = path;
          InitializeComponent();

          // set cookie
          InternetSetCookie(url,"JSESSIONID",Globals.ThisDocument.sessionID); 

          // navigate
          webBrowser.Navigate(url); 
     }
}
原文链接:https://www.f2er.com/csharp/95781.html

猜你在找的C#相关文章