具体错误为
Microsoft JET Database Engine '80040e07'
标准表达式中数据类型不匹配。
错误行为
Conn.Execute("Update [lovertc_article] Set [atitle] ='"& atitle &"',[Keywords] = '"& Keywords &"',[description] = '"& description &"',[acontent] = '"& FY_edit &"',[aauthor] = '"& aauthor &"',[adate] = '"& Request.Form("adate") &"',[aclass] ='"& aclass &"',[top] = "& top &" Where [id] ="& Request.QueryString("id"))
Call admin_err("日志修改完成",1,"返回上一页","ad_article.Asp")
其中只有ID 和ACLASS为长整型
但修改[aclass] ='"& aclass &"'为[aclass] ="& aclass &"则回出现Update语句错误要怎么解决啊?