将动易SiteWeaver留言板由讨论区模式改为留言板模式
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