您好我有一个Jsp页面,我想在另一个jsp页面中调用该jsp页面。例如,我有includefile.jsp页面
<html>
<body>
<b><font color='red'> Hello World</font></b><br>
<b><font color='red'> HTML file is included in JSP page<font></b>
</body>
</html>
我有include.jsp页面,我想调用第一个jsp
<html>
<body>
<%@ include file='includedFile.jsp' %>
</body>
</html>
但此代码无效。如果有人可以帮我解决这个问题,我将非常感激。
答案 0 :(得分:2)
在include.jsp页面
<html>
<body>
<form action = "includeFile.jsp">
<input type="submit" value="open other jsp">
</form>
</body>
</html>
**确保将两个JSP文件放在同一个文件夹中。