ASP技术在WEB数据库中的应用
http://yin/User_Login/default.htm。
本文链接地址:http://www.oyaya.net/fanwen/view/142286.html
2.
服务器接受用户请求,调出相应页面(假设该页面含有一个表单)。 例如default.htm,其代码如下:<html>
<head>
<meta name ="GENERATOR "content ="Microsoft FrontPage 3.0">
<title>
系统登录</title></head>
<h2 align ="center">
系统登录</h2><hr><form method ="post" action =”user_login.asp” name =”form”>
<center>
请输入用户名:<input name ="username" type ="text"> 请输入口令:<input type ="password" name ="password" size ="14"><br>
<input type ="submit" value ="
登录" name ="submit"><input type ="reset" value ="
复位" name ="reset"></center></form></body>
</html>
当浏览器端填入要查询的用户名和口令并按下
submit按钮时,它将用户名以username,口令以password的变量形式送到user_login.asp中。3.
服务器把刚调出的含有表单的页面送给客户机浏览器,系统login.htm在IE浏览器中的显示情况如图2所示 《ASP技术在WEB数据库中的应用(第6页)》