我的程序中的SSL网站

时间:2015-01-03 08:56:54

标签: c# webbrowser-control

我想制作一些可以使用网站的程序 我尝试使用webkitdotnet,但它不能与谷歌或其他网站的SSL网站一起使用 有人可以帮助我解决这个问题

我也尝试在C#中使用webBrowser 用这个

ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(AcceptAllCertifications);

 public bool AcceptAllCertifications(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certification, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors)
    {
        return true;
    }

但它在JS脚本中遇到了一些问题,所以我也无法使用它

有人知道任何其他控件,我可以用于软件的DLC

我正在使用Forms。

0 个答案:

没有答案