day1 01

  1. JSP中对Session的操作

<%

session.getAttribute("LoginURL").toString();//获取登录的URL

session.putValue("GI",tG);//Session传递数据

GlobalInput tGI=new GlobalInput();

tGI=(GlobalInput)session.getValue("GI");//Session中获得数据

%>

GlobalInput tG = new GlobalInput();tG=(GlobalInput)session.getValue("GI");是获取该登陆用户的一些信息。

你可能感兴趣的:(day1 01)