浏览 2000 次
锁定老帖子 主题:简单的后台用户登录验证
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-04-10
后台验证是WEB应用中使用非常广泛的一种应用形式,常用于验证用户登录\后台数据校验等等. login.html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script type="text/javascript"> <!-- var xmlHttp ; function createXMLHttpRequest(){ if(window.ActiveXObject){ xmlHttp = new ActiveXObject("Microsoft.XMLHTTP") ; } else if(window.XMLHttpRequest){ xmlHttp = new XMLHttpRequest() ; } } function checkUser(){ createXMLHttpRequest() ; var name = document.getElementById("username").value ; var password = document.getElementById("password").value ; var url = "login_check.jsp?username="+name+"&password="+password ; xmlHttp.open("GET",url,true) ; xmlHttp.onreadystatechange = showResult ; xmlHttp.send(null) ; } function showResult(){ if(xmlHttp.readyState == 4){ if(xmlHttp.status == 200){ var result = xmlHttp.responseText;//在页面上显示返回的结果 document.getElementById("checkResult").innerHTML="<b>"+result+"</b>" ; } } } //--> </script> </head> <body> ajax<br> 用户名:<input type="text" id="username"><div id="checkResult"></div><p> 密码:<input type="text" id="password" ><p> <input type="button" value="检查用户名" onclick="checkUser()"><p> </body> </html> login_check.jsp <%@ page language="java" contentType="text/html; charset=GBK"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>ajax</title> </head> <body> <% String name = request.getParameter("username") ; String password = request.getParameter("password") ; System.out.println("name--->"+name+" password---->"+password); if(name != null && password != null){ if(name.equals("ajax") && password.equals("ajax")){ out.write("<font color=red>恭喜你!此用户名可用</font>"); }else{ out.write("<font color=red>此用户名已被人占用</font>") ; } } %> </body> </html> 引用自:http://www.blogjava.net/keweibo/articles/152628.html 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |