参考书籍:《J2EE开源编程精要15讲》

 

JSP(Java Server Page)页面由HTML代码和嵌入其中的Java代码组成。

简单的JSP页面如:

1 <html>
2     <body>
3         <%
4             out.println("<H1>Hello World!</H1>");
5         %>
6     </body>
7 </html>
View Code

相关文章:

  • 2021-05-23
  • 2022-12-23
  • 2021-07-04
  • 2021-06-25
  • 2021-10-26
  • 2022-01-07
  • 2022-12-23
  • 2021-05-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-27
  • 2021-10-31
  • 2021-11-29
相关资源
相似解决方案