JSP_include指令和<jsp:include>

包含三个文件:jsp_include.jsp, static.html, two.jsp

环境:tomcat7.0, myeclipse10

1.jsp_include.jsp

<%@ page contentType="text/html;charest=UTF-8" language="java" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>  
  <body><%@ include file="static.html"%>
  <a href = "two.jsp">goto two--></a><br>
  	this examples show include works
  	<jsp:include page="two.jsp" flush="true">
  		<jsp:param name="a1" value=‘<%=request.getParameter("name")%>‘/>
  		<jsp:param name="a2" value=‘<%=request.getParameter("password")%>‘/>
  	</jsp:include>
  </body>
</html>

在版本7.0以上的tomcat中,连续使用引号会出现错误,解决方法如下:

Tomcat - 解决which must be escaped when used within the value错误

2.static.html

<!DOCTYPE html>
<html>
  <body><form method=post action="jsp_include.jsp">
  	<table>
  		<tr><td>please input your name: </td></tr>
  		<tr><td><input type=text name=name></td></tr>
  		<tr><td>please input your password: </td></tr>
  		<tr><td><input type=text name=password></td></tr>
  		<tr><td><input type=submit value=login></td></tr>  	
  	</table>
  	</form>
  </body>
</html>

3.two.jsp

<%@ page contentType="text/html;charest=UTF-8" language="java" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<br>
this is a1=<%=request.getParameter("a1") %>
<br>
this is a2=<%=request.getParameter("a2") %>
<br>
<% out.println("hello from two.jsp"); %>

代码我上传到了我的资源。。在审核,有时间我会帖上链接方便大家下载阅读。

JSP_include指令和<jsp:include>,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。