jsp:include标签,无法正常工作,请高手指点!高分回赠!
发布网友
发布时间:2023-09-07 18:42
我来回答
共4个回答
热心网友
时间:2023-09-20 14:46
因为<jsp:param>标签中不能直接使用request.getParameter等方法,会在jsp转换为java文件时造成编译错误,分开写就没事了
<%
String username = request.getParamter("username");
String password = request.getParameter("password");
%>
<jsp:include page="two.jsp" flush="true">
<jsp:param name="a1" value="<%=username%>" />
<jsp:param name="a2" value="<%=password%>" />
</jsp:include>
热心网友
时间:2023-09-20 14:47
错误500,说明你要引入的文件有问题,去检查下吧!
你可以尝试下<jsp:include>其他的页面</jsp:include>
热心网友
时间:2023-09-20 14:47
把static.html里面的
<html>
<body>
</body>
</html>
去掉
热心网友
时间:2023-09-20 14:48
试试<%@include %>,看exception的意思是你的参数引用有问题!