欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-03-02 07:54:35
复制代码 代码如下:
复制代码 代码如下:

<!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编辑器下载