LINK tag removed from HEAD with EditCompleteDocument=true from Insert Template Dialog

  •  10-08-2006, 4:08 AM

    LINK tag removed from HEAD with EditCompleteDocument=true from Insert Template Dialog

    When I attempt to insert a predefined template with EditCompleteDocument=true everything in the HEAD tag is removed. Example:
     
    <head>
    <link href="Missionary/css.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    <!--
    .style1 {
     color: #FFFFFF;
     font-weight: bold;
     font-family: Arial, Helvetica, sans-serif;
    }
    -->
    </style>
    </head>
     
    When I insert the template using insert template the head tag is changed to:
     
    <head>
    </head>
     
    I need to have linked (<LINK> tag) styles and inline styles. How do I do this? Here is the different variations I have tried:
     
    <CE:Editor ID="Editor1" runat="server" EditCompleteDocument="true"></CE:Editor>
     
    -Or-
     
    <CE:Editor ID="Editor1" runat="server" EditCompleteDocument="true"  DisableAutoFormatting="true" EnableStripScriptTags="false" AutoParseClasses="true"></CE:Editor>
     
    Secondary issue is styles are not applied and images are not always visible in the preview from the insert template dialog.
View Complete Thread