I'm using Webbrowser control to login to HTTPS site. but I get popup "Security Warning":
the codes below do n't work.why?
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(ValidateServerCertificate);
public static bool ValidateServerCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
{
return true;
}
where should i put these codes?
also there is another old thread in stackoverflow with a codeproject link.
it does not work too...
How can I disable this alert?
i am using visual studio 2010 & .net 4...
thanks in advance
Change ScriptErrorsSuppressed
property of WebBrowser
control to true
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With