最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

aspcms首页content内容html代码过滤,ASPCMS内容调用去掉html标签

互联网 admin 7浏览 0评论

aspcms首页content内容html代码过滤,ASPCMS内容调用去掉html标签

打开\inc\AspCms_MainClass.asp

if len(decodeHtml(DateArray(6,i)))>infolen then

nloopstr = replace(nloopstr,matchfield.value,left(replace(decodeHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))&"…"

else

nloopstr = replace(nloopstr,matchfield.value,left(replace(decodeHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))

end if

修改后的代码:

if len(decodeHtml(DateArray(6,i)))>infolen then

nloopstr = replace(nloopstr,matchfield.value,left(replace(dropHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))&"…"

else

nloopstr = replace(nloopstr,matchfield.value,left(replace(decodeHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))

end if

将蓝色代码修改成红色代码即可。

然后是产品的简介:

找到

if len(pagecontent)>contentlen then pagecontent=left(pagecontent,contentlen)&"..." 替换为

if len(pagecontent)>contentlen then pagecontent=left(dropHtml(pagecontent),contentlen)&"..."

原文:.html

aspcms首页content内容html代码过滤,ASPCMS内容调用去掉html标签

打开\inc\AspCms_MainClass.asp

if len(decodeHtml(DateArray(6,i)))>infolen then

nloopstr = replace(nloopstr,matchfield.value,left(replace(decodeHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))&"…"

else

nloopstr = replace(nloopstr,matchfield.value,left(replace(decodeHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))

end if

修改后的代码:

if len(decodeHtml(DateArray(6,i)))>infolen then

nloopstr = replace(nloopstr,matchfield.value,left(replace(dropHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))&"…"

else

nloopstr = replace(nloopstr,matchfield.value,left(replace(decodeHtml(DateArray(6,i)),"{aspcms:page}",""),infolen))

end if

将蓝色代码修改成红色代码即可。

然后是产品的简介:

找到

if len(pagecontent)>contentlen then pagecontent=left(pagecontent,contentlen)&"..." 替换为

if len(pagecontent)>contentlen then pagecontent=left(dropHtml(pagecontent),contentlen)&"..."

原文:.html

发布评论

评论列表 (0)

  1. 暂无评论