Linking to file "SyntaxHighlighter.css" causes Security Warning in IE7

Last post 05-20-2009, 3:57 PM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  05-19-2009, 3:23 AM 52307

    Linking to file "SyntaxHighlighter.css" causes Security Warning in IE7

    Hi,
     
    We recently bought Cute Editor for our Web site which is hosted on HTTPS. After deploying pages containing Cute Editor on the site, we are getting security warning on IE 7 browsers, which says that - "This page contains non-secure items, Do you want to continue?"
     
    When i investigated the issue further, i found that If i remove the following line of code from "Template.aspx" page, the security warning is gone:
       <link type="text/css" rel="stylesheet" href='<%=ResolveUrl("Load.ashx?type=style&file=SyntaxHighlighter.css")%>' />
     
    Can anyone help me on this issue of why this is happening?
     
    Thanks
    Amit Mathur
    Filed under:
  •  05-20-2009, 3:57 PM 52368 in reply to 52307

    Re: Linking to file "SyntaxHighlighter.css" causes Security Warning in IE7

    Hi Amit Mathur,
     
    I can not reproduce this issue, do you use the latest version?
     
    Do you get the issue when use simple page like below?
     
    -------------------------------------------------------------------------->

    <%@ Page Language="C#" %>

    <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <CE:Editor ID="Editor1" runat="server">
            </CE:Editor>
        </form>
    </body>
    </html>
    -------------------------------------------------------------------------->
     
    Regards,
     
    Ken
View as RSS news feed in XML