在静态页怎么调用这个东西 
这个静态页有几个文本框 和textarea 
我想把textarea部分换成这个编辑器 
应该怎么写呢

解决方案 »

  1.   

     <CE:Editor ID="EditorInfo" runat="server" Width="460px" RenderRichDropDown="False" AutoConfigure="Minimal" Height="220px">
                <FrameStyle BackColor="White" BorderColor="#DDDDDD" BorderStyle="Solid" BorderWidth="1px"
                    CssClass="CuteEditorFrame" Height="100%" Width="600px" /></CE:Editor>
      

  2.   

    <INPUT type="hidden" name="content1" value="&nbsp;">
    <IFRAME ID="eWebEditor1" src="eWebEditor.html?id=content1&style=standard" frameborder="0" scrolling="no" width="650" height="350"></IFRAME>
      

  3.   

    1.在<head></head>中
    <script type="text/javascript" src="/fckeditor/fckeditor.js"></script> 路径你自己选择
    2.在你需要插入编辑器的地方
    <script type="text/javascript">
    var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
    oFCKeditor.Create() ;
    </script>