求ASP后台新闻编辑器

来源:百度知道 编辑:UC知道 时间:2024/09/23 11:29:00
从网上下了几个不会用,求一套编辑器,最好附带调用代码

另外:提交后显示的,怎么才能让文件里面不出来类似<P>  的html标签
在线等,谢谢

FCKeditor
http://www.fckeditor.net下载
调用方法:<!--#include file="../FCKeditor/fckeditor.asp"-->//包含相应文件
<%
dim Ofckeditor
Set Ofckeditor=new Fckeditor '实例化Fckeditor
Ofckeditor.BasePath="../FCKeditor/" '指定编辑器的url
Ofckeditor.ToolbarSet="Default" '指定显示的方式
Ofckeditor.width="500" '指定编辑器的高度和宽度
Ofckeditor.height="500"
Ofckeditor.create "news" '创建编辑器,创建接值的对象
%>

eWebEditor
http://www.ewebeditor.net下载
调用方法:
<iframe ID="eWebEditor1" src="../uploadfile/ewebeditor.asp?id=News&style=s_coolblue" frameborder="0" scrolling="no" width="550" HEIGHT="350"></iframe>

<