我知道那里的问题
if atitle= "xwzw " then
ddrs.open "select a.*,b.* from vipgrzl a,vipqzyx b where b.xwzw= ' "&ClubId& " ' and a.vipClubId=b.ClubId ",conn,1,1
else
ddrs.open "select * from vipgrzl where "&atitle& "= ' "&ClubId& " ' ",conn,1,1
end if
分页的时候就出现这样的错误
不知道那里的问题
iisHelp/common/500-100.asp,行242
Microsoft OLE DB Provider for SQL Server 错误 '80040e14 '
第 1 行: '= ' 附近有语法错误。
/glxt/seletchack.asp,行134
134 行
ddrs.open "select * from vipgrzl where "&atitle& "= ' "&ClubId& " ' ",conn,1,1
------解决方案--------------------sql = "select * from vipgrzl where "&atitle& "= ' "&ClubId& " ' "
ddrs.open sql,conn,1,1
------解决方案--------------------检查你的 atitle 的值, 输出 sql语句 看看
------解决方案--------------------response.write "select * from vipgrzl where "&atitle& "= ' "&ClubId& " ' ":response.end
看看有什么问题