1.查询出来并选择某字段的值
sql="select * from admin"
set rs = conn.execute(sql) '直接得到一个集合数据类型
do while not rs.eof
response.Write(rs("username"))
rs.movenext
loop
rs.close
set rs=nothing
2.JSP中的更新语句
newpass = "an"
sql="update admin set password='"&newpass&"' where username='admin'"
response.Write(sql)
conn.execute(sql)
在JSP中的SQL语句是这样来写的哦:+ASP中我们是用&来处理的哦!
太简单了吧!
3.后台获取到提交的参数值
r_id=request("id")
<%=content%>
类似于JSP中的<%= Variable%>
阅读(893) | 评论(0) | 转发(0) |