嗨,我有一个 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>
但这段代码不起作用。如果有人可以帮助我解决这个问题,我将不胜感激。