aspcms详细页多图显示
1、进入product.html 输入代码

2、进入 inc 打开AspCms_templateFun.asp 文件.
将A图中的代码换成B图中的代码【
if iCount<1 then
else
if iCount < cint(m_maxcount) then
soutput = soutput & match.SubMatches(1)
'soutput = replace(soutput,"[aspcms:cimagesitem]","")
'soutput = replace(soutput,"[/aspcms:cimagesitem]","")
soutput = replace(soutput,"[cimages:src]",img)
soutput = replace(soutput,"[cimages:i]",iCount+1)
'echo img & "<br>"
end if
end if
iCount = iCount + 1
next
end if
】
可以搜索【'die soutput】进行定位


3、OK