首页 > 动易 > 将动易SiteWeaver留言板由讨论区模式改为留言板模式

将动易SiteWeaver留言板由讨论区模式改为留言板模式

2008年1月16日 阵风 发表评论 阅读评论

PowerEasy SiteWeaver CMS 6.5 Build 0115的留言板首页默认显示方式为讨论区模式,如果想改为留言板模式,只需修改系统的默认值即可。
修改方法:修改Include/PowerEasy.GuestBook.asp中的函数ShowGueststyle(),将默认方式由 1 改为 2。


''=================================================
''函数名:ShowGueststyle()
''作  用:获取查看方式
''参  数:无
''=================================================
Private Function GuestStyle()
    ShowGStyle = Request.Cookies("ShowGStyle")
    If ShowGStyle = "" Or Not IsNumeric(ShowGStyle) Then
        ShowGStyle = 2
    Else
        ShowGStyle = Int(ShowGStyle)
    End If
    GuestStyle = ShowGStyle
End Function

  1. 本文目前尚无任何评论.
  1. 本文目前尚无任何 trackbacks 和 pingbacks.