declare.jsp

来自「《精通JSP编程 》源代码(赵强那本) 很有用的源代码」· JSP 代码 · 共 18 行

JSP
18
字号
<%!
 int numTimes=3;
  public String sayHello(String name) {
   return "hello" + name +"!";
  }
 %>
 
<html>
 <head>
   <title>
     declareation
   </title>
 <body>
   <p> the value of numTimes is <%=numTimes%></p>
   <p>saying hello to reader:"<%=sayHello("reader")%>".</p>
   </body>
 </html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?