ASP技术在WEB数据库中的应用
和数据库相连,并执行查询
本文链接地址:http://www.oyaya.net/fanwen/view/142286.html
set Conn=server.CreateObject("ADODB.Connection")
Conn.Open("Dsn=TA;uid=yin;pwd=")
set cursor=conn.execute(sql)
%>
<%if cursor.EOF then ‘为空,说明不存在该用户
cursor.close
conn.close
set cursor=nothing
set conn=nothing
response.write "对不起,你还没有注册,不能进入系统"
else
‘从数据库取数据
session("user_name")=cursor(0)‘用户名交给session对象中的变量user_name,直到该用户退出
cursor.close
conn.close
set cursor=nothing
set conn=nothing
response.write "登录成功,欢迎您?
response.write session("user_name")
response.write "—光临我们的站点。"
end if
end if
%>
</body>
</html>
5. 运行ASP文件,按照用户请求生成一个HTML结果页面。例如用户输入的用户名和口令与存储在数据库中的一致,登录成功,服务器把结果页面发送给客户机浏览器。生成HTML页面代码为:
<html>
<head></head>
<body>
登录成功,欢迎您梮xx椆饬傥颐堑恼镜恪?/P>
</body>
</html>
七、ASP的缺点与发展
ASP除了提供访问数据库的服务器组件之外,还有读写服务器文件、访客记数器、广告轮播器、CONTENT LINKING管理URL等服务器组件,您还可以自己制作ACTIVEX
《ASP技术在WEB数据库中的应用(第8页)》