首页 > 其他 > 详细

基础知识

时间:2017-08-04 21:56:44      阅读:221      评论:0      收藏:0      [点我收藏+]

 

 

//这段代码可以使我剩下很多代码

<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
%>
<base href="<%=basePath%>">

 

 

//这段代码可以使session如果不为空,可以重定向到登录的页面

<% if (session.getAttribute("Suser") != null) {
response.sendRedirect("/index");
} %>

基础知识

原文:http://www.cnblogs.com/itchenfirst/p/7287115.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!