首页 > CMS > 新云NewAsp > 正文

新云4下载栏目的软件数量如何调用?|新云CMS

2024-07-09 22:55:54
字体:
来源:转载
供稿:网友

新云4  括号里的软件数量如何调用?转

1、在classmenu.xslt,在</xsl:choose>后面增加代码

 

(<xsl:value-of select="@ShowCount"  disable-output-escaping="yes"/>)

 

具体意思就是( 读取@showCount的值 )

2、打开inc/template.inc 文件  

查找If depth=0 Then

将此判断语句后面的

 

SQL="SELECT"&strMaxListnum&" C.classid,C.rootid,C.depth,C.ClassName,C.ColorModes,C.FontModes,C.Readme,C.Child,C.LinkTarget,C.TurnLink,C.TurnLinkUrl,C.HtmlFileDir,B.ChannelDir,B.StopChannel,B.BindDomain,B.DomainName,B.IsCreateHtml,B.HtmlExtName,B.SortDestination FROM [NC_Classify] C inner join [NC_Channel] B On C.ChannelID=B.ChannelID WHERE C.ChannelID="&channid&" "&strQuery

 

换成

 

SQL="SELECT"&strMaxListnum&" C.classid,C.rootid,C.depth,C.ClassName,C.ShowCount,C.ColorModes,C.FontModes,C.Readme,C.Child,C.LinkTarget,C.TurnLink,C.TurnLinkUrl,C.HtmlFileDir,B.ChannelDir,B.StopChannel,B.BindDomain,B.DomainName,B.IsCreateHtml,B.HtmlExtName,B.SortDestination FROM [NC_Classify] C inner join [NC_Channel] B On C.ChannelID=B.ChannelID WHERE C.ChannelID="&channid&" "&strQuery

 

即增加了C.ShowCount字段

3.查找 sTitle=Node.selectSingleNode("@classname").text

在此后面新加一段

 

Node.attributes.setNamedItem(datalist.createNode(2,"ShowCount","")).text="<font color=red>" & Node.selectSingleNode("@showcount").text & "</font>"   'QQ 850268891 新增
 

 

 
再刷新一下你的分类页,看是不是出来了呢? 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表