include.jsp という別のページを含む index.jsp というページがあります。
これはindex.jspです
<html>
<body>
<jsp:include page=include.jsp" >
</body>
</html>
include.jsp
String var="hello";
include.jsp で宣言された変数 var を index.jsp で使用するにはどうすればよいですか? ありがとう
include.jsp という別のページを含む index.jsp というページがあります。
これはindex.jspです
<html>
<body>
<jsp:include page=include.jsp" >
</body>
</html>
include.jsp
String var="hello";
include.jsp で宣言された変数 var を index.jsp で使用するにはどうすればよいですか? ありがとう