标签: php jsp
当我在PHP中创建母版页时,我使用:
<? ob_start(); ?> HTML <? $PAGE_CONTENT = ob_get_contents(); ob_end_clean(); include "master.page.php"; ?>
所以我将内容更改为变量并将其打印在master.page.php中。
我现在需要用JSP做同样的事情。相当于什么? 我是JSP的新手,我需要帮助。
非常感谢。