当前位置: 代码迷 >> Java Web开发 >> include 出问题
  详细解决方案

include 出问题

热度:881   发布时间:2006-11-18 17:45:58.0
include 出问题
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
jspinclude
</title>
</head>
<body bgcolor="#ffffff">
<jsp:include flush="false" page="test">
</body>
</html>
出错信息:
"jspinclude.jsp": org.apache.jasper.JasperException: file:E:/jwork/JSP/javabean/beanModule/jspinclude.jsp(10,0) Expecting "jsp:param" standard action with "name" and "value" attributes
到底哪里出问题了呢?
添加<jsp:param也不行
搜索更多相关主题的帖子: include  jsp  body  head  

----------------解决方案--------------------------------------------------------
<jsp:include page="/test" />
试下嘛
----------------解决方案--------------------------------------------------------
  相关解决方案