注册 登录
编程论坛 J2EE论坛

include 出问题

shenba 发布于 2006-11-18 17:45, 508 次点击
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
jspinclude
</title>
</head>
<body bgcolor="#ffffff">
<jsp:include flush="false" page="test.html">
</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也不行
1 回复
#2
独孤无痕2006-11-18 18:21
<jsp:include page="/test.html" />
试下嘛
1