登录界面login。jsp<%@ page contentType=”text/html; charset=GB2312″ %><form action=”login2。jsp” method=”post”><input type=”text” name=”username” /><input type=”password” name=”psd” /><input type=”submit” value=”确定”/></form>验证页面login2。
jsp<%@ page contentType=”text/html; charset=GB2312″ %><%String user = (String)request(“username”);String psd = (String)request(“psd”);if(user。
equals(“user”) && psd。equals(“psd”)){ session(“login”, “ok”); ndRedirect(“index。jsp”);}%>主页index。jsp<%@ page contentType=”text/html; charset=GB2312″ %><%String islogin = (String)session(“login”);if(!islogin。
equals(“ok”)){ ndRedirect(“login。jsp”);// 或提示未登录}%>。。主页内容。