This error results from JavaScript in my dijit.js file. There are two versions of the script file, the uncompressed represents the original source (dijit.js.uncompressed.js) and the standard (dijit.js) has been compressed for optimal transfer time. 

Since the uncompressed version is the most readable, I will describe my solution based on that. At line #1023, an IFRAME is rendered in JavaScript:

    if(dojo.isIE){
        var html="<iframe src='javascript:\"\"'"
               + " style='position: absolute; left: 0px; top: 0px;"
               + "z-index: -1; filter:Alpha(Opacity=\"0\");'>";
        iframe = dojo.doc.createElement(html);
    }else{...

What's the problem? The src for the IFRAME is "insecure". Simply replace with the following:

    if(dojo.isIE){
        var html="<iframe src='javascript:void(0);'"
               + " style='position: absolute; left: 0px; top: 0px;"
               + "z-index: -1; filter:Alpha(Opacity=\"0\");'>";
        iframe = dojo.doc.createElement(html);
    }else{...

This is the most common problem with JavaScript toolkits and SSL in IE. Since IFRAME's are used as shims due to poor overlay support for DIV's, this problem is extremely prevalent. I have not tested this with earlier versions of IE; however, for my system IE7 support is sufficient.

Another common problem are dynamic background images specified in JavaScript against something like a DIV. This would look like:

    mydiv.style.background = "url(images/background.png)";

You will need to specify the full URL for this to work on an SSL page in IE. If possible, you should try to restructure your backgrounds in a CSS that doesn't dynamically modify the DOM.