一个网络朋友让我给他介绍一个论坛模板,我推荐了bbsxp。他用后发现分论坛无法统计今日发的帖子。今天终于有时间读了代码,找到了修改的办法:
1. 打开newtopic.asp
2.查找这一句:conn.execute("update [bbsconfig] set lasttopic='<a href=ShowPost.asp?id="&id&">"&left(HTMLEncode(Request.Form("topic")),15)&"</a>',lastname='"&username&"',lasttime='"&now()&"',today=today+1,toltopic=toltopic+1,tolrestore=tolrestore+1 where id="&forumid&"")
3.在他后面插入:
set rs=conn.execute("select * from [bbsconfig] where id="&forumid&"")
followid=rs("followid")
rs.close
conn.execute("update [bbsconfig] set lasttopic='<a href=ShowPost.asp?id="&id&">"&left(HTMLEncode(Request.Form("topic")),15)&"</a>',lastname='"&username&"',lasttime='"&now()&"',today=today+1,toltopic=toltopic+1,tolrestore=tolrestore+1 where id="&followid&"")
这样就可以了。总算对得起朋友,请他来试一试吧。