javaweb_JSP 的 include 指令的程序

1.在建立的 WEB 工程中建立 include.jsp 文件,top.txt 文件和 bottom.txt 文件。源代
码如下:
include.jsp

 <%@ page contentType="text/html;charset=gb2312"%>
<%@ include file="top.txt"%>

<%out.println("此书出版了,快来看看吧!还有更多的好书等着您呢!");%>

<%@ include file="bottom.txt"%>

top.txt



《JSP 从入门到实战》网站


《JSP 从入门到实战》网站

bottom.txt


@电子工业出版社版权所有 2004-2008
制作人:邓子云
联系方式:[email protected]

2.部署并浏览该页面。
思考:如果将 top.txt 和 bottom.txt 改为 bottom.jsp 和 top.jsp,上述程序会出错吗?
错了如何改正?

你可能感兴趣的:(Java,Web技术,html,javaweb)