标题:[求助]数据库
取消只看楼主
folake
Rank: 1
等 级:新手上路
帖 子:73
专家分:0
注 册:2006-2-15
 问题点数:0 回复次数:0 
[求助]数据库

<!--#include file="checkadmin.asp" -->
<%
password_old=request("password")
password_new=request("password1")
password_new1=request("password2")
set rs=server.CreateObject("adodb.recordset")
sql="select * from admin where id="&session("id")
rs.open sql,conn,1,1
pass=rs("password")
rs=nothing
set rs=nothing

if password_old<>pass then
response.Write("<script language=javascript>alert('旧密码错误'); location.href='config.asp';</script>")
else
if password_new<>password_new1 then
response.Write("<script language=javascript>alert('两次输入密码不同'); location.href='config.asp';</script>")
else
set rs=server.CreateObject("adodb.recordset")
sql="select * from admin where id="&session("id")
rs.open sql,conn,1,3
rs("password")=password_new1
rs.update
rs.close
set rs=nothing
response.Write(err.number&err.description&err.source)
if err=0 then
response.Write("<script language=javascript>alert('修改成功'); location.href='config.asp';</script>")
end if
end if
end if

%>


91对象变量未设置Microsoft VBScript 运行时错误
谁帮我看下,为什么会这样

搜索更多相关主题的帖子: 数据库 
2006-07-11 10:11



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-77658-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.776241 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved