webbrowser 设置cookie

第一步引用DLL 

[DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)]

   public static extern bool InternetSetCookie(string lpszUrlName, string lbszCookieName, string lpszCookieData);

第二步 把cookie设置到对应的URL中

       InternetSetCookie(url, "UserID", userInfo.UserID);

       InternetSetCookie(url, "UserUniqueID", userInfo.UserUniqueID);

 可以设置对个值

 webbrowser.Navigate(new Uri(url)) 即可

你可能感兴趣的:(c#)