asp 中的 判断? 这样有错吗? 总是提示:参数类型不正确,或不在可以接受的范围之内,或与其他参数冲突。

<%dimusername,userpwdu=session("user")userpwd=trim(request("jiumima"))userpwd1=trim(r... <%
dim username,userpwd
u=session("user")
userpwd=trim(request("jiumima"))
userpwd1=trim(request("xinmima"))

set rs=server.CreateObject("adodb.recordset")
sql="select * from user where user_name='"&u&"'"
rs.open sql,conn,1,3

if not rs.eof then
if rs("user_pwd")<>userpwd then
response.Write("<script>alert('旧密码输入错误!');location.href='j_Change password.asp';</script>")
response.End()
else
rs("user_pwd")=userpwd1
rs.update

end if
end if
conn.close
set conn=nothing
%>
展开
 我来答
bigpswd
2011-10-15 · TA获得超过585个赞
知道小有建树答主
回答量:217
采纳率:0%
帮助的人:108万
展开全部
首先需要看看DIM的参数是否有重复,如果有,则取消。

<%
dim u,rs,sql '如果已经声明了U,RS,SQL变量,则不需要这一行

dim username,userpwd
u=session("user")
userpwd=trim(request("jiumima"))
userpwd1=trim(request("xinmima"))

set rs=server.CreateObject("adodb.recordset")
sql="select * from [user] where user_name='"&u&"'"
rs.open sql,conn,1,3

if not rs.eof then
if rs("user_pwd")<>userpwd then
rs.close
set rs=nothing
response.Write("<script>alert('旧密码输入错误!');location.href='j_Change password.asp';</script>")
response.End()
else
rs("user_pwd")=userpwd1
rs.update
end if
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
追问
rs.open sql,conn,1,3  错误在这行。
还有。 上面的声明的那些变量都是 没重复的。
追答
估计是你的U变量没有定义,你dim u了吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
缓步莫迟疑C
2011-10-15 · TA获得超过1.1万个赞
知道大有可为答主
回答量:6217
采纳率:73%
帮助的人:6522万
展开全部
sql="select * from [user] where user_name='"&u&"'"
conn对象被创建了么? 错误提示是哪一行呢?
追问
conn创建了的。   错误是:rs.open sql,conn,1,3  这行  谢谢
追答
试过替换上面的SQL语句么? 好像user是保留的关键字,使用时要用方括号引起来.
我觉得还是conn的问题.因为SQL语句的错误提示不应该是这样的.
你在rs.open这一句上面加一句
response.write conn.state : response.end
看看输出是什么,如果还是错误信息,说明你没创建conn对象,或是创建时的变量名不是conn.
如果返回一个值,把值贴上来,能看出来conn是否已连接数据库.
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友35202b0b1
2011-10-15 · TA获得超过522个赞
知道小有建树答主
回答量:777
采纳率:0%
帮助的人:564万
展开全部
错误提示不完整,错误在哪一行

你用
response.write()
response.end
组合来调试错误~~

参考资料: http://www.iseofox.com/buy

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式