问题:如何去掉作者的链接?
  
解决方法:找到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  |    |