解析SiteWeaver 怎样去掉作者的链接_动易Cms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

问题:如何去掉作者的链接?

解决方法:找到Incldue/PowerEasy.Common.Content.asp文件,大概330行,

        For i = 0 To UBound(authorarry)
            tempauthor = tempauthor & "<a href='" & strInstallDir & "ShowAuthor.asp?ChannelID=" & iChannelID & "&AuthorName=" & authorarry(i) & "' title='" & authorarry(i) & "'>" & GetSubStr(authorarry(i), AuthorInfoLen, True) & "</a>"
            If i <> UBound(authorarry) Then tempauthor = tempauthor & "|"
        Next

 

改为:

    

        For i = 0 To UBound(authorarry)
            tempauthor = tempauthor & GetSubStr(authorarry(i), AuthorInfoLen, True) 

            If i <> UBound(authorarry) Then tempauthor = tempauthor & "|"
        Next

   

查看更多 动易Cms教程  动易Cms模板

来源:模板无忧//所属分类:动易Cms教程/更新时间:2009-06-27
相关动易Cms教程