如何在两个jsp页面之间传值,在另外一个页面用EL表达式获取值

第一个jsp页面

  <% 
  String ids=request.getParameter("id");
  int id=Integer.parseInt(ids);
  %>
 

  在第一个页面中,用EL表达式存储到session作用域中,在第二个页面中再到session作用域中获取值

第二个jsp页面


 

转载于:https://www.cnblogs.com/CloudsSeas/p/9399475.html

你可能感兴趣的:(如何在两个jsp页面之间传值,在另外一个页面用EL表达式获取值)