C# – How to disable “Security Warning” window in Webbrowser control

browserchttpsSecuritywinforms

I'm using Webbrowser control to login to HTTPS site.
but I get popup "Security Warning":

Security Warning window

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

Best Answer

Change ScriptErrorsSuppressed property of WebBrowser control to true.