欢迎访问服务器技术网-www.fuwuqijishu.com

在JSP中如何用Session实现不登录无法进入主页面?

程序设计 fuwuqijishu 2年前 (2022-10-01) 11次浏览 0个评论 扫描二维码

登录界面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”);// 或提示未登录}%>。。主页内容。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2510.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900