我有一个名为 index.jsp 的页面,其中包含另一个名为 include.jsp 的页面
这是 index.jsp
<html>
<body>
<jsp:include page=include.jsp" >
</body>
</html>
包含.jsp
String var="hello";
如何在 index.jsp 中使用 include.jsp 中声明的变量 var?感谢你
我有一个名为 index.jsp 的页面,其中包含另一个名为 include.jsp 的页面
这是 index.jsp
<html>
<body>
<jsp:include page=include.jsp" >
</body>
</html>
包含.jsp
String var="hello";
如何在 index.jsp 中使用 include.jsp 中声明的变量 var?感谢你