- 6月 17 週三 200917:35
jsp中網頁詢問是否視窗,如何將預設值放在『否』?
- 11月 10 週一 200805:59
JSP 新技巧筆記1
在jsp網頁中,如何於該網頁內部分區域、插入靜態或動態網頁 。 1.靜態網頁 <%@ include file="…htm" %><%@ include file ="test.htm" %>
例:
<html>
<head>
<title>JSP include element test</title>
</head>
<body>
This content is statically in the main JSP file.<br />
<%@ include file="included.html" %>
</body>
</html>
例:
<html>
<head>
<title>JSP include element test</title>
</head>
<body>
This content is statically in the main JSP file.<br />
<%@ include file="included.html" %>
</body>
</html>
1
