I am using upload services and i have to use a request over http due to which IE gives me "Mixed Content" popup. My client do not want this. Is there any way to hide or handle it through java script or in Jquerry or C#?

Additional Info: Web Application C# Asp.Net

Are you using "System.Windows.Forms.WebBrowser"? If so, try the following:

System.Windows.Forms.WebBrowser myWebBrowser = null;

//disable script errors
this.myWebBrowser.ScriptErrorsSuppressed = true;
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.