请问下 这FCKEditor 这编辑区的高度在哪可以调高些

解决方案 »

  1.   

    转载的:<% 
    '我的代码:
    Dim oFCKeditor
    Set oFCKeditor = New FCKeditor
    oFCKeditor.BasePath = "/FCKeditor/"  //设置编辑器的路径,我站点根目录下的一个目录
    oFCKeditor.ToolbarSet = "Default"
    oFCKeditor.Width = "100%"
    oFCKeditor.Height = "600"//<---------------这个就是设置高度
    oFCKeditor.Value = "" //这个是给编辑器初始值
    oFCKeditor.Create "logbody" //以后编辑器里的内容都是由这个logbody取得,命名由你定
    %> 
      

  2.   

    var oFCKeditor = new FCKeditor("blg_body");  
    oFCKeditor.Height = 400;  
    var editArea = document.getElementById("FCKeditor1___frame");   
    editArea.style.height = '500px';   FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ;
    FCKConfig.EditorAreaStyles = '' ; 
      

  3.   

    var oFCKeditor = new FCKeditor( 'fck' ) ;   
    oFCKeditor.BasePath = 'fckeditor/' ;  
    oFCKeditor.Height = 300 ;   
    oFCKeditor.Width = 600;   
    oFCKeditor.Value = '';   
    oFCKeditor.ToolbarSet = 'Default';  
    oFCKeditor.Create(); 
      

  4.   

    在页面头部导入
    <%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>下面是代码部分:
    <tr>
    <td>
    <FCKeditorV2:FCKeditor ID="fck_C_Content" runat="server" DefaultLanguage="zh-cn" Width="100%" Height="500px">
           </FCKeditorV2:FCKeditor>
    </td>
    </tr>
      

  5.   


    <FCKeditorV2:FCKeditor ID="fckContents" runat="server" Height="500px" Width="100%"
                    BasePath="~/fckeditor/" ToolbarSet="">
    </FCKeditorV2:FCKeditor>
    Fckeditor配置及应用示例
      

  6.   

    <FCKeditorV2:FCKeditor ID="fckContents" runat="server" Height="500px" Width="100%"
                    BasePath="~/fckeditor/" ToolbarSet="">
    </FCKeditorV2:FCKeditor>