静态的登录界面的设计login.htm,代码如下:
<html>
<cabeza>
<título>系统登录</título>
<tipo de estilo="texto/css">...
<!--
.estilo1 {...}{
tamaño de fuente: 18px;
peso de fuente: negrita;
}
.style2 {...}{tamaño de fuente: 24px}
.style5 {...}{tamaño de fuente: 16px}
-->
</estilo>
</cabeza>
<cuerpo bgcolor="papayawhip" ancho="300" alto="300">
<centro>
<table border="2" bordercolor="negro" bgcolor="verde claro">
<tcuerpo>
<tr>
<td><div align="center" class="estilo1 estilo2">系 统 登 录
</div></td>
</tr>
<formulario acción="login.jsp" método="publicación">
<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="contraseña" name="upwd" maxlength="20" style="width:150"></td> </tr><br>
<centro>
<tr><td><div align="centro">
<tipo de entrada="enviar" valor="登录" >
<tipo de entrada="reset" valor="取消">
</div></td></tr>
</centro>
</formulario>
</tbody>
</tabla>
</centro>
</cuerpo>
</html>
Login.jsp接使用sky2098作为登录用户名和密码,但在实际中是要从数据库中读取的,该jsp页面代码实现如下:
<%...@ página contentType="text/html;charset=GB2312"%>
<%...
if(request.getParameter("uid").equals("sky2098")&&request.getParameter("upwd").equals("sky2098")){
session.setAttribute("iniciar sesión","ok");
sesión.setMaxInactiveInterval(-1);
%>
<jsp:página de avance="main.jsp"/>
<%...
}demás{
out.println("用户名或密码输入错误!");
}
%>
如果登录成功,则设定login的值为ok,提交到下一步验证页面,则进入main.jsp页面,否则,如果输入的用户名和密码不合法就打印错误信息,main.jsp页面代码如下:
<%...@ página contentType="text/html;charset=GB2312"%>
<%...@ incluir archivo="checkvalid.jsp" %>
<html>
<cabeza>
<title>~BIENVENIDO A MI PÁGINA DE INICIO~</title>
</cabeza>
<cuerpo>
<centro>
~BIENVENIDO A MI PÁGINA DE INICIO~
</centro>
</cuerpo>
</html>
这个页面使用<% @ include file="checkvalid.jsp" %>包含了一个jsp页面checkvalid.jsp为了验证输入信息的合法性:
<%...
if(session.getAttribute("login")==null||!session.getAttribute("login").equals("ok")){
respuesta.sendRedirect("login.htm");
}
%>
如果输入信息有误,则回到登录页面,重新输入登录信息.
测试登录功能.
启动Tomcat服务器,在IE地址栏中键入URL为: