http://localhost:8080/jsptech/request1.jsp

来源:互联网 发布:怎样自己制作软件 编辑:程序博客网 时间:2024/05/22 15:39

http://localhost:8080/jsptech/request1.jsp

Hello World

文件名:request1.jsp

<%@page language="java" contentType="text/html;charset=gb2312"%>
<%@include file="hello1.jsp"%>
<%=request.getAttribute("TestString")%>

文件名:hello1.jsp

<%@page language="java" contentType="text/html;charset=gb2312" import="java.util.*"%>
<html>
<head>
<title>request对象使用实例1</title>
</head>
<body>
<%
request.setAttribute("TestString","Hello World");
%>
</body>
</html>
 

原创粉丝点击