[求助]一个错误的语句
set rs=conn.execute("select*from [user] where userid="&lguserid&" and not del")
浏览器显示为:
Microsoft JET Database Engine '80040e14'
语法错误 (操作符丢失) 在查询表达式 'userid= and not del' 中。
\usersetup.asp, line 12
后改为:
set rs=conn.execute("select*from [user] where userid='"&lguserid&"' and not del")
浏览器显示为:
Microsoft JET Database Engine '80040e07'
标准表达式中数据类型不匹配。
\usersetup.asp, line 12
请各位帮帮忙!谢谢!