成人精品国产亚洲_chinese人妖_我爱52av好色_用力哦我要喷了h文男男

資訊動態

ASP版最新FCKEditor編輯器的使用方法

日期:2015-01-04 作者:管理員 來源:本站

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 轉載時請注意標明來源。

二維碼
掃二維碼手機查看該文章
當前網址:http://drinkflexwater.com/webseo/98.html

相關資訊

?
Copyright ? 2007-2024 珠海市網訊互聯信息科技有限公司 drinkflexwater.com 版權所有
粵公網安備44040202000391號 粵ICP備19117377號 網站地圖 站點地圖
在線客服