从首页A进入页面B,然后从B页面登录,成功后跳转到A页面,并打印一句话“登录成功”,传值需要用的后台的。
在B页面写:
<% session.setAttribute( "key" , "success" );
%> |
在A页面写:
<% Object k = session.getAttribute( "key" );
String key; if ( null != k){
key = k.toString();
if (key.equals( "success" )){
session.setAttribute( "key" , null );
out.print( "<center><h3>登录成功!</h3></center>" );
} } %> |