为什么输出页面显示的都为null ??????

来源:8-8 使用Cookie实现保存商品浏览记录

自明小友

2018-08-28 16:15

<%@ page language="java" contentType="text/html; charset=GB18030" pageEncoding="utf-8"%>


<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>处理页</title>

</head>

<body>

<%

request.setAttribute("user","zhangfei");//存储自定义数据

request.setAttribute("id","2");//存储自定义数据

request.setAttribute("pwd","888888888");//存储自定义数据

%>

id参数的值为:<%=request.getParameter("id")%><br>

user参数的值为:<%=request.getParameter("user")%><br>

pwd参数的值为:<%=request.getParameter("pwd")%>

</body>

</html>



写回答 关注

2回答

  • 自明小友
    2018-08-30 22:16:52

    知道了,多谢哈

  • weibo_桑德拉克的我_0
    2018-08-30 17:40:12

    应该是request.getAttribute()方法而不是getParameter()方法


JAVA遇见HTML——JSP篇

Java Web入门级教程JSP,带你轻松的学习JSP基础知识

248277 学习 · 3071 问题

查看课程

相似问题