function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
java devjava dev 

Getting Security Information "Your page contains Both secure and non-scure items"

Hi all,
 
In IE(Internet Explorer) When I am executing my s-controls by my links, after clikcing on the custom link, I am getting
 
Security INformation saying "Your page contains Both secure and non-scure items", Do you want to allow?
 
Even with small scontrol, like
 
<html><head><title> </title>
<script src="
https://www.salesforce.com/services/lib/ajax/beta3.3/sforceclient.js"
 type="text/javascript"></script>
<script language="JavaScript">
function reSizeWindow() {
 alert("hello");
}
</script>
<body onload="reSizeWindow();">
<center>
<iframe name="emailFrame" id="emailIframe" width="0" height="0" frameborder="0"></iframe>
<br><br><br>
<SPAN STYLE=" font-size: 75%; font-family: 'Arial', 'Helvetica', sans-serif;"> 
Please Wait....
</span><br><br>
<img src="/img/waiting_dots.gif" alt="Please wait..." title="Please wait..." height="20" width="196">
</center>
</body>
</html>
 
Can any body give me suggestions to avoid getting the Security messages coming from IE.
 
I dont want to get those messages.
 
 
DevAngelDevAngel
Not sure.  In Firefox you can view the urls of all the resources for the page.  I would take a look at that and see what might be coming from an http url rather than an https one.  Get the Web Developer extension and install it then load your scontrol and click tools/web developer/information/View Page Information.  From there you can see the url for links and media (gifs and such).

Cheers