1

嗨,我有一个 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>

但这段代码不起作用。如果有人可以帮助我解决这个问题,我将不胜感激。

4

1 回答 1

2

在您的 include.jsp 页面中

<html>
<body>
<form action = "includeFile.jsp">
<input type="submit" value="open other jsp">
</form>
</body>
</html>

**确保将两个 JSP 文件放在同一个文件夹中。

于 2014-06-21T20:47:54.797 回答