WEB开发网
开发学院WEB开发Jsp Session(Resin Example) 阅读

Session(Resin Example)

 2008-01-05 08:36:47 来源:WEB开发网   
核心提示:<%@ page language=javascript %><% /* session.jsp * * Trivial example of session variables, just stores a counter * in the session variable. * * Sin

<%@ page language=javascript %><% 
/* session.jsp 

* Trivial example of session variables, just stores a counter 
* in the session variable. 

* Since the Request object comes from the Servlet API, Resin 
* scripts can share session variables with java Servlets. 
*/ 
var count = session.value.counter++; 

%> 

<Html> 
<head><title>Counter</title></head> 
<body bgcolor=#ffffff> 
<% 

if (session.isNew()) { 
%><h1>Welcome to a new session.</h1><% 
} else if (session.value.name) { 
%><h1>Welcome back: <%= session.value.name %> <%= count %> </h1><% 
} else { 
%><h1>Welcome back: <%= count %> </h1><% 


%> 
<p/><a href="<%= response.encodeUrl("session.jsp") %>">click</a> to enable 
session rewriting. 
</body> 
</html> 

Tags:Session Resin Example

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接