设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 541|回复: 0
打印 上一主题 下一主题

[其它] 数据更新问题

[复制链接]
跳转到指定楼层
1#
发表于 2003-7-21 17:03:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
第一次添加下载文档后,回首页点击该新添的下载文档就会出现无效使用 Null: 'CInt' ,但以后点击正常。
经查,添加新文档后,数据库download表下的"lasthit"记录为空,点击文档一次后,记录为当前日期。

原代码:
<%
'更新每周每日数据
lasthit=rs("lasthit")
tdate=year(Now()) & "-" & month(Now()) & "-" & day(Now())
if trim(lasthit)=trim(tdate) then
  sql="update download set dayhit=dayhit+1 where id="&request("id")
  conn.Execute(sql)
'  response.write "success"
else
  sql="update download set dayhit=1 where id="&request("id")
  conn.Execute(sql)
'  response.write "error"
end if
sql="update download set lasthit='"&tdate&"' where ID="&request("id")
conn.Execute(sql)

    p_year=CInt(year(Now()))-CInt(year(lasthit))
    p_month=CInt(month(Now()))-CInt(month(lasthit))
    p_day=CInt(day(Now()))-CInt(day(lasthit))
    period_time=((p_year*12+p_month)*30+p_day)
if cint(period_time)=<cint(7) then
  sql="update download set weekhit=weekhit+1 where id="&request("id")
  conn.Execute(sql)
else
  sql="update download set weekhit=1 where id="&request("id")
  conn.Execute(sql)
end if
%>

请指点如何修改以上代码,谢谢!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-29 18:21 , Processed in 0.090392 second(s), 24 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表