在線客服

電話①:189 6508 9135(張先生)
電話②:134 0599 8886(何小姐)
電話③:0591-83489135

技術(shù)文章


aspcms [list:desc] 描述標(biāo)簽限制長(zhǎng)度修改


aspcms 描述標(biāo)簽長(zhǎng)度限制出錯(cuò),如【list:desc len=10】如果描述有內(nèi)容時(shí)無(wú)法限制長(zhǎng)度為10個(gè)字符,需要修改inc文件夾下AspCms_MainClass.asp文件。

第1723行

if not isnul(rsObj("PageDesc")) then
nloopstr = replace(nloopstr,matchfield.value,rsObj("PageDesc"))
else
infolen = parseArr(fieldArr)("len") : if isNul(infolen) then infolen = 200 else infolen=cint(infolen)
nloopstr = replace(nloopstr,matchfield.value,left(filterStr(dropHtml(decodeHtml(rsObj("Content"))),"html"),infolen))
end if

替換為:

if not isnul(rsObj("PageDesc")) then
infolen = parseArr(fieldArr)("len") : if isNul(infolen) then infolen = 200 else infolen=cint(infolen)
nloopstr = replace(nloopstr,matchfield.value,left(filterStr(decodeHtml(replace(rsObj("PageDesc"),"{aspcms: page}","")),"html"),infolen))
else
infolen = parseArr(fieldArr)("len") : if isNul(infolen) then infolen = 200 else infolen=cint(infolen)
nloopstr = replace(nloopstr,matchfield.value,left(filterStr(dropHtml(decodeHtml(replace(rsObj("content"),"{aspcms: page}",""))),"html"),infolen))
end if

可以解決描述有內(nèi)容時(shí)[list:desc]字符長(zhǎng)度限制。



相關(guān)文章

首頁(yè)  電話  咨詢  頂部