asp中如何使用fckeditor

来源:百度知道 编辑:UC知道 时间:2024/06/15 14:19:48
asp中如何使用fckeditor具体过程

<!-- #INCLUDE file="FCKeditor/FCKeditor.asp" -->
<form action="post.asp" method="post" target="_blank">
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/" '存放的目录路径
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "100%"
oFCKeditor.Height = "400"
oFCKeditor.Value = "123"
oFCKeditor.Create "Content" '表单名称,提交的取这个值
%>
<input type="submit" value="Submit" />
</form>

提交时,Request.Form("Content") 就行了