当前位置: 首页 > 图文教程 > 网络编程 > 网页编辑器 > DISCUZ论坛的UBB编辑器(增加灵活调用,支持ASP UBB解析)打包下载

网页编辑器
fckeditor在php中的用法(添加于修改写成了函数)
关于CKeditor的非主流个性应用的设置
dedecms5.5 最新版ckeditor编辑器整合教程
javascript 网页编辑框及拖拽图片的问题
asp.net FCKeditor 2.6.3 配置说明
轻松实现 CKfinder进驻CKEditor3.0
将CKfinder 整合进 CKEditor3.0的方法
ASp.net下fckeditor配置图片上传最简单的方法
ckeditor 简单配置方法
asp.net CKEditor和CKFinder的应用
FCKEDITOR 的高级功能和常见问题的解决方法
CuteEditor 编辑器的字体样式无法控制的解决方法
fckeditor 修改记录添加行距功能插件
SyntaxHighlighter 语法高亮插件的使用教程

网页编辑器 中的 DISCUZ论坛的UBB编辑器(增加灵活调用,支持ASP UBB解析)打包下载


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-10   浏览: 121 ::
收藏到网摘: n/a

从Discuz分离的网页编辑器,大家可以加到自己的页面上
复制代码 代码如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>Discuz编辑器</title>
<meta name="keywords" content="Discuz编辑器">
<meta name="description" content="Discuz编辑器">
<meta name="generator" content="Discuz! 5.0.0 with Templates 5.0.0">
<meta name="MSSmartTagsPreventParsing" content="TRUE">
<meta http-equiv="MSThemeCompatible" content="Yes">
</head>
<br/>
调用方法请看本例源码。<br/>
UBB代码显示:在要显示的页面包含ubb.asp这个文件<br/>
如下显示:Ubbcode(server.htmlencode(request("content")))<br/>
<form method="post" action="?action=add">
<table cellspacing="1" border=1>
<tr>
<th colspan="2">添加贴子</th>
</tr>
<tr>
<td width="26">标题</td>
<td width="699" style="text-align:left"><input type="text" name="title" size="42">
</td>
</tr>
<tr>
<td>内容</td>
<td>
<textarea name="content" cols="80" rows="2" style="display:none"></textarea>
<iframe ID="Editor" name="Editor" src="edit.htm?id=content" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:320px;width:100%"></iframe>
</td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<input type="submit" value="添加内容">

<input type="reset" value="重新填写">
</div></td>
</tr>
</table>
</form>
</body>
</html>

DISCUZ论坛的UBB编辑器下载