1:下載FCKEditorweb
去www.baidu.com 搜索,我原本想上傳的,但不知道怎麼傳。下載下來後解壓到你網站的目錄,最好就放在根目錄下,文件夾名字就用FCKEditor;這裏能夠隨便本身喜愛,但個人例子裏就是這樣。數據庫
2:在頁面裏引用編輯器
首先引用FCKEditor:在你的頁面里加入<!-- #include file="FCKeditor/fckeditor.asp" -->post
而後在你頁面中想要它顯示的地方加入如下代碼網站
<%spa
Dim oFCKeditororm
Set oFCKeditor = New FCKeditorci
oFCKeditor.BasePath = "FCKeditor/"it
oFCKeditor.ToolbarSet = "Default"io
oFCKeditor.Width = "98%"
oFCKeditor.Height = "500px"
oFCKeditor.Value = ""
oFCKeditor.Create "logbody"
%> 這段的做用就是初始加載FCKeditor編輯器。這段網上都有註解,能夠去搜索。
到此,你就已經添加成功,你的頁面中就已經出現編輯器了。
如何把FCKeditor的內容保存到數據庫,如何把數據庫裏的數據顯示在FCKeditor中,我想這是多數初用者最想知道的。請看上面引用代碼中的這一句:oFCKeditor.Create "logbody" 這裏的logbody就表明你的FCKeditor,你也能夠用其它的名字。
怎麼使用呢,我是這樣作的:用一個表單把它裝起來,而後就和文本框同樣使用了,如:
<form action="saveBhou.asp" method="post">
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "FCKeditor/"
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "98%"
oFCKeditor.Height = "500px"
oFCKeditor.Value = ""
oFCKeditor.Create "logbody"
%>
</form
而後在saveBhou.asp裏讀取:text=request("logbody"),這裏的text就是你要的內容,把他把存到數據庫中就OK。
把數據庫裏的內容顯示在FCKeditor中就在引用代碼中給這句賦值oFCKeditor.Value = ""