SilverLight
SilverLight

Reputation: 20468

How to disable “Security Warning” window in Webbrowser control

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

Upvotes: 5

Views: 11167

Answers (1)

Kuba Wyrostek
Kuba Wyrostek

Reputation: 6221

Change ScriptErrorsSuppressed property of WebBrowser control to true.

Upvotes: 7

Related Questions