ASP版最新FCKEditor編輯器的使用方法
第一步,首先要下載FCKEditor編輯器源代碼
去百度搜索,到FCKEditor編輯器官方網站下載,下載完FCKEditor后解壓并上傳到你網站的目錄,最好就放在根目錄下,文件夾名字就用FCKEditor;這里可以隨便自己喜好。
第二步,在網站的后臺頁面里引用
首先引用FCKEditor:在你的頁面里加入<!-- #include file="FCKeditor/fckeditor.asp" -->
然后在你頁面中想要它顯示的地方加入以下代碼:
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "FCKeditor/"
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "98%"
oFCKeditor.Height = "500px"
oFCKeditor.Value = ""
oFCKeditor.Create "logbody"
%>
這段的作用就是初始加載FCKeditor編輯器。這段網上都有注解,可以去搜索。
到此,你就已經添加成功,你的頁面中就已經出現編輯器了。
如何把FCKeditor的內容保存到數據庫,如何把數據庫里的數據顯示在FCKeditor中,我想這是多數初用者最想知道的。請看上面引用代碼中的這一句:oFCKeditor.Create "logbody" 這里的logbody就代表你的FCKeditor,你也可以用其它的名字。
怎么使用呢,我是這樣做的:用一個表單把它裝起來,然后就和文本框一樣使用了,如:
<form action="save.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>
然后在save.asp里讀取:text=request("logbody"),這里的text就是你要的內容,把他把存到數據庫中就OK。把數據庫里的內容顯示在FCKeditor中就在引用代碼中給這句賦值oFCKeditor.Value = ""
資料整理:珠海網站建設網 http://drinkflexwater.com 轉載時請注意標明來源。
掃二維碼手機查看該文章
- 上一篇:防止圖片撐破頁面的CSS代碼
- 下一篇:珠海網訊互聯網站建設網前景與發展狀況