web web web
分类: Web开发
2014-08-12 08:48:28
<html> <head> <title>系统登录title> <style type="text/css"> style> head> <body bgcolor="papayawhip" width="300" height="300"> <center> <table border="2" bordercolor="black" bgcolor="lightgreen"> <tbody> <tr> <td><div align="center" class="style1 style2">系 统 登 录 div>td> tr> <form action="login.jsp" method="post"> <tr> <td height="28"><span class="style5">用户名span> <input type="text" name="uid" maxlength="20" style="width:150">td>tr><br> <tr> <td><span class="style5">密 码span> <input type="password" name="upwd" maxlength="20" style="width:150">td>tr><br> <center> <tr><td><div align="center"> <input type="submit" value="登录" > <input type="reset" value="取消"> div>td>tr> center> form> tbody> table> center> body> html > |
<%@ page contentType="text/html;charset=GB2312"%> <% if(request.getParameter("uid").equals("sky2098")&&request.getParameter("upwd").equals("sky2098")){ session.setAttribute("login","ok"); session.setMaxInactiveInterval(-1); %> <jsp:forward page="main.jsp"/> <% }else{ out.println("用户名或密码输入错误!"); } %> |
<%@ page contentType="text/html;charset=GB2312"%> <%@ include file="checkvalid.jsp" %> <html> <head> <title>~WELCOME TO MY HOMEPAGE~title> head> <body> <center> ~WELCOME TO MY HOMEPAGE~ center> body> html> |
<% if(session.getAttribute("login")==null||!session.getAttribute("login").equals("ok")){ response.sendRedirect("login.htm"); } %> |
测试登录功能。
启动Tomcat服务器,在IE地址栏中键入URL为:
可以看到登录界面,如图所示:
键入用户名sky2098,密码sky2098,点击“登录”提交信息,如图所示:
如果输入的用户名或者密码错误,则提示信息如图所示:
这样,就实现了简单的登录验证功能。