DDR爱好者之家 Design By 杰米
<%
Function HTMLEncode(ByVal strValue)
 '忽略错误
 On Error Resume Next
 '定义变量
 Dim strNewValue
 If strValue <> "" Then
  strNewValue = Replace(strValue,"<","&lt;")
  strNewValue = Replace(strNewValue,">","&gt;")
  strNewValue = Replace(strNewValue,"'","&#39;")
  strNewValue = Replace(strNewValue,"""","&quot;")
  strNewValue = Replace(strNewValue,vbCrLf,"<br>")
  strNewValue = Replace(strNewValue," ","&nbsp;")
 End If
 HTMLEncode = strNewValue
 '输出错误
 If Err.Number>0 Then
  Response.Write Err.Description
  Response.End
 End If
End Function

Function UBBCode(strValue) 
Dim RegExp 
'strValue=HTMLEncode(strValue)
Set RegExp=New RegExp 
RegExp.IgnoreCase =True 
RegExp.Global=True 

If strValue <> "" Then
RegExp.Pattern="(\[IMG\])(.[^\[]*)(\[\/IMG\])" 
strValue=RegExp.Replace(strValue,"<a href=""$2"" target=_blank><IMG SRC=""$2"" border=0 alt=按此在新窗口浏览图片 onload=""javascript:if(this.width>screen.width-333)this.width=screen.width-333""></a>") 

RegExp.Pattern="(\[FLASH\])(.[^\[]*)(\[\/FLASH\])" 
strValue=RegExp.Replace(strValue,"<OBJECT codebase=""http://download.macromedia.com/pub/sho ... h/swflash.cab#version=4,0,2,0"" classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 width=500 height=400 id=ShockwaveFlash1><PARAM NAME=movie VALUE=""$2""><PARAM NAME=quality VALUE=high><embed src="/UploadFiles/2021-04-02/">") ' target=_blank rel=nofollow>http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"" type=""appl ... 00 height=400></embed></OBJECT>") 

RegExp.Pattern="(\[ZIP\])(.[^\[]*)(\[\/ZIP\])" 
strValue=RegExp.Replace(strValue,"<br><a href=""$2"">点击下载该文件</a>") 

RegExp.Pattern="(\[RAR\])(.[^\[]*)(\[\/RAR\])" 
strValue=RegExp.Replace(strValue,"<br><a href=""$2"">点击下载该文件</a>") 

'RegExp.Pattern="(\[UPLOAD=(.[^\[]*)\])(.[^\[]*)(\[\/UPLOAD\])" 
'strValue=RegExp.Replace(strValue,"<br><IMG SRC=""$2.gif"" border=0> <A HREF=""$3"" TARGET=_blank>点击查看或下载该文件</A>") 
'strValue=RegExp.Replace(strValue,"<br><IMG SRC=""$2.gif"" border=0>此主题相关图片如下:<br><A HREF=""$3"" TARGET=_blank><IMG SRC=""$3"" border=0 alt=按此在新窗口浏览图片 onload=""javascript:if(this.width>screen.width-333)this.width=screen.width-333""></A>") 

RegExp.Pattern="(\[URL\])(http:\/\/.[^\[]*)(\[\/URL\])" 
strValue=RegExp.Replace(strValue,"<A HREF=""$2"" TARGET=_blank>$2</A>") 

RegExp.Pattern="(\[URL\])(.[^\[]*)(\[\/URL\])" 
strValue=RegExp.Replace(strValue,"<A HREF=""$2") ' target=_blank rel=nofollow>http://$2"" TARGET= ... t;/A>") 

RegExp.Pattern="(\*)\])(.[^\[]*)(\[\/URL\])" 
strValue=RegExp.Replace(strValue,"<A HREF=""$2"" TARGET=_blank>$3</A>") 

RegExp.Pattern="(\[URL=(.[^\[]*)\])(.[^\[]*)(\[\/URL\])" 
strValue=RegExp.Replace(strValue,"<A HREF=""[url]http://$2"" TARGET=_blank>$3</A>") 

RegExp.Pattern="(\[EMAIL\])(\S+\@.[^\[]*)(\[\/EMAIL\])" 
strValue=RegExp.Replace(strValue,"<A HREF=""mailto:$2"">$2</A>") 

RegExp.Pattern="(\[EMAIL=(\S+\@.[^\[]*)\])(.[^\[]*)(\[\/EMAIL\])" 
strValue=RegExp.Replace(strValue,"<A HREF=""mailto:$2"" TARGET=_blank>$3</A>") 

RegExp.Pattern = "^(http://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "(http://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)$" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "[^>=""](http://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "^(ftp://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "(ftp://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)$" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "[^>=""](ftp://[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "^(rtsp://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "(rtsp://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)$" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "[^>=""](rtsp://[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "^(mms://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "(mms://[A-Za-z0-9\./=\?%\-&_~`@':+!]+)$" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern = "[^>=""](mms://[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)" 
strValue=RegExp.Replace(strValue,"<a target=_blank href=$1>$1</a>") 

RegExp.Pattern="(\[HTML\])(.[^\[]*)(\[\/HTML\])" 
strValue=RegExp.Replace(strValue,"<table width='100%' border='0' cellspacing='0' cellpadding='6' bgcolor='#FFFFFF'><td><b>以下内容为程序代码:</b><br>$2</td></table>") 

RegExp.Pattern="(\[code\])(.[^\[]*)(\[\/code\])" 
strValue=RegExp.Replace(strValue,"<table width='100%' border='0' cellspacing='0' cellpadding='6' bgcolor='#FFFFFF'><td><b>以下内容为程序代码:</b><br>$2</td></table>") 

RegExp.Pattern="(\[color=(.[^\[]*)\])(.[^\[]*)(\[\/color\])" 
strValue=RegExp.Replace(strValue,"<font color=$2>$3</font>") 

RegExp.Pattern="(\[face=(.[^\[]*)\])(.[^\[]*)(\[\/face\])" 
strValue=RegExp.Replace(strValue,"<font face=$2>$3</font>") 

RegExp.Pattern="(\[align=(.[^\[]*)\])(.*)(\[\/align\])" 
strValue=RegExp.Replace(strValue,"<div align=$2>$3</div>") 

RegExp.Pattern="(\[QUOTE\])(.*)(\[\/QUOTE\])" 
strValue=RegExp.Replace(strValue,"<table cellpadding=0 cellspacing=0 border=0 WIDTH=94% bgcolor=#000000 align=center><tr><td><table width=100% cellpadding=5 cellspacing=1 border=0><TR><TD BGCOLOR='#FFFFFF'>$2</table></table><br>") 

RegExp.Pattern="(\[fly\])(.*)(\[\/fly\])" 
strValue=RegExp.Replace(strValue,"<marquee width=90% behavior=alternate scrollamount=3>$2</marquee>") 

RegExp.Pattern="(\[move\])(.*)(\[\/move\])" 
strValue=RegExp.Replace(strValue,"<MARQUEE scrollamount=3>$2</marquee>")  

RegExp.Pattern="\[GLOW=*([0-9]*),*(#*[a-z0-9]*),*([0-9]*)\](.[^\[]*)\[\/GLOW]" 
strValue=RegExp.Replace(strValue,"<table width=$1 style=""filter:glow(color=$2, strength=$3)"">$4</table>") 

RegExp.Pattern="\[SHADOW=*([0-9]*),*(#*[a-z0-9]*),*([0-9]*)\](.[^\[]*)\[\/SHADOW]" 
strValue=RegExp.Replace(strValue,"<table width=$1 style=""filter:shadow(color=$2, strength=$3)"">$4</table>") 

RegExp.Pattern="(\[i\])(.[^\[]*)(\[\/i\])" 
strValue=RegExp.Replace(strValue,"<i>$2</i>") 

RegExp.Pattern="(\[u\])(.[^\[]*)(\[\/u\])" 
strValue=RegExp.Replace(strValue,"<u>$2</u>") 

RegExp.Pattern="(\[b\])(.[^\[]*)(\[\/b\])" 
strValue=RegExp.Replace(strValue,"<b>$2</b>") 

RegExp.Pattern="(\[fly\])(.[^\[]*)(\[\/fly\])" 
strValue=RegExp.Replace(strValue,"<marquee>$2</marquee>") 

RegExp.Pattern="(\[size=1\])(.[^\[]*)(\[\/size\])" 
strValue=RegExp.Replace(strValue,"<font size=1>$2</font>") 

RegExp.Pattern="(\[size=2\])(.[^\[]*)(\[\/size\])" 
strValue=RegExp.Replace(strValue,"<font size=2>$2</font>") 

RegExp.Pattern="(\[size=3\])(.[^\[]*)(\[\/size\])" 
strValue=RegExp.Replace(strValue,"<font size=3>$2</font>") 

RegExp.Pattern="(\[size=4\])(.[^\[]*)(\[\/size\])" 
strValue=RegExp.Replace(strValue,"<font size=4>$2</font>") 

RegExp.Pattern="(\[center\])(.[^\[]*)(\[\/center\])" 
strValue=RegExp.Replace(strValue,"<center>$2</center>") 
End If
Set RegExp=Nothing 
UBBCode=strValue 

'输出错误
If Err.Number>0 Then
  Response.Write Err.Description
  Response.End
End If
End Function
%>
调用:<%=UBBCode(Content)%>
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米

《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线

暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。

艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。

《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。