如何创建母版页?
我需要在 JSP 中创建一个母版页,以供其他 JSP 使用,以便它们具有相同的外观和菜单。我怎样才能在 JSP 中做到这一点?
I need to create a master page in JSP to be used by other JSPs for them to have the same look and feel and menus. How can I do that in JSP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
或
要了解差异,另请参阅 http://www.jguru。 com/faq/view.jsp?EID=13517:
You can use either
or
To know the difference see also http://www.jguru.com/faq/view.jsp?EID=13517:
您可以使用
标记或 JSP 模板。如果您熟悉 JSF (JavaServer Faces 技术)然后使用 Facelets。You can use
<jsp:include />
tag or JSP Templates. In case if you are familiar with JSF (JavaServer Faces technology) then use Facelets.