有用JS写ASP的朋友吗,小弟碰到个问题,就是实现当日访问量时不能精确比对,比如今天是9月14日,但今天的访问量就会将8月14日等所有的月份14日加在一起,不知道怎样改代码.
//实现当日访问量
sqlz="select sum(count) as zd from [count] where day(dae) = '"+((new Date).getDate())+"'";
//实现当月访问量
sqlm="select sum(count) as dm from [count] where Month(dae) = '"+((new Date).getMonth()+1)+"'";