ASP和Access数据库 查询问题

表名称info字段名称:username、password、qq等我现在想做两个事情第一个是:两个ASP一个发送值一个处理一个有两个输入框一个按钮填写username和q... 表名称 info 字段名称:username、password、qq等
我现在想做两个事情
第一个是:
两个ASP一个发送值 一个处理
一个有两个输入框一个按钮 填写 username 和 qq 按下按钮后
response.Write(password) 出来符合这两个条件下 id段内的password值

第二个事情:
两个ASP一个发送值 一个处理
四个个有两个输入框一个按钮 填写 username 和 password 按下按钮
修改符合这两个条件下 id段内的password值 他的值是另两个输入框的值 一个是修改的密码 一个是确认密码

请直接给我代码吧 ,代码最好能注释下。我ASP是小白 想学习下
先说声谢谢 献上100财富值

数据库连接如下:
<!-- #include file="conn.asp" -->
数据库都是长文本的

目前一个都没实现,提高20悬赏 谁帮我解决我就选谁 谢谢
展开
 我来答
bai渡wo爱
2014-03-27 · TA获得超过695个赞
知道小有建树答主
回答量:620
采纳率:60%
帮助的人:468万
展开全部
表单页面没空给你做,只给处理页面
1.以下qq为数值。
username=request("username")
qq=request("qq")
if qq="" or username="" then
response.write "全部必填"
else
sql="select password form info where username='"&username&"' and qq="&qq
set psw=conn.execute(sql)
response.write psw("password")
end if

2.
'用户名
username=requset("username")
'原密码
password=request("password")
'新密码
newpassword=request("newpassword")
'新密码确认
passwordsure=request("newpasswordsure")
if password="" or newpassword="" or newpasswordsure="" or username="" then
response.write "全部必填"
else
Set rs=CreateObject("Adodb.recordset")
sql="select * from info where username='"&username&" and password='"&password&"'"
rs.open sql,conn,1,3
if not rs.eof then
if newpasswordsure=newpassword then
rs("password")=newpassword
rs.update
response.write "修改成功"
else
response.write"新密码不一致!"
end if
else
response.write"原密码错误!"
end if
end if
更多追问追答
追问
第一个没有返回 不知道怎么回事
追答
你的qq数据库里是不是数值
543655233
2014-03-28 · 超过15用户采纳过TA的回答
知道答主
回答量:53
采纳率:0%
帮助的人:30.4万
展开全部
sql="select password form info where username='"&username&"' and qq="&qq
第一个没有返回修改成这样试试
sql="select password form info where [username]='"&username&"' and qq="&qq
追问
也不行
追答
写错了吧?from写成了form,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式