我的是已經設定好的了。。
要引用進來 fredck.fckeditorv2.dll 這個檔案。
首先在頁面的開頭要引用:
<%@ register tagprefix="fckeditorv2
" namespace="
fredck.fckeditorv2
" assembly="
fredck.fckeditorv2
" %>
在頁面中放入:(basepath="~/fckeditor/" 這個要加上 否則會不顯示。而且這個資料夾要放在專案的根目錄下。)
"fckeditor1
" runat="
server
" basepath="
~/fckeditor/
" height="
300px
">
用js判斷這個word框不能為空寫法:
var oeditor = fckeditorapi.getinstance('fckeditor1');
if (oeditor.gethtml() == ""
)
後台要獲取這個框中的值,並插入到資料庫中:只有用這種sql語句的寫法才不會出現錯誤。
(注意:在資料庫設計中要把這個字段型別設定為:nclob)
privatevoid
bc()
catch
(exception ex)
}
關於FCKEditor的用法
如果您需要編輯模板頁,預設的fck設定是會去掉 標籤,而且會給你加上 標籤的,怎麼辦呢,只要設定乙個小的地方就可以了。在fckconfig裡面有 fckconfig.fullpage false 改為 fckconfig.fullpage true 如果想去掉自動新增的 就可以在這裡設定 預設是fc...
一 fckEditor的使用。
fckeditor有一版.net外掛程式。換句話說,在配置好fckeditor的動態鏈結庫後,在vs2005 2008中就可以多乙個可選控制項。直接拉拽使用,在任意乙個具備autopostback特性的控制項的事件中,都可以通過fckeditor的控制項id來獲取fckeditor中的html內容。...
FCKeditor使用詳解
fckeditor 的.net 2.0核心庫 說明 fckeditor2.6.3.zip是其最新的檔案和什麼的 fckeditor.net.zip是asp.net呼叫的dll在裡面。2.分別解壓後把fckeditor2.6.3.zip裡的fckeditor目錄整個複製到 中。3.解壓fckedito...