如題。謝謝回答!

解决方案 »

  1.   

    <input type="hidden" id="FCKeditor1" name="FCKeditor1" value="" /><input type="hidden" id="FCKeditor1___Config" value="" /><iframe id="FCKeditor1___Frame" src="/FCKeditor/editor/fckeditor.html?InstanceName=FCKeditor1&amp;Toolbar=Default" width="100%" height="200px" frameborder="no" scrolling="no"></iframe>
    不确定能行,不过生成出来是这样
      

  2.   

    先下个DLL导入下 然后在下他的文件包 包含到项目里去 把路径设置一下  就可以直接从工具箱拖拉了
      

  3.   

    首先头部引用//aspx页
    <%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>//这调用
    <FCKeditorV2:FCKeditor id="FCKeditor1" runat="server" BasePath="~/FCKeditor/" height="500" Width="99%">    </FCKeditorV2:FCKeditor>
    cs页取值this.FCKeditor1.Value;//这就是编辑器中的内容了
      

  4.   

    BasePath 是你编辑器放置的路径
      

  5.   

    我說的是在ASP中,不是在ASP.Net中,謝謝回答!