ELtest.jsp 451 B

1234567891011121314151617181920212223
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: x'b'w
  4. Date: 2021/5/21
  5. Time: 19:52
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>例子3</title>
  12. </head>
  13. <body>
  14. <%
  15. request.setAttribute("no1",19);
  16. request.setAttribute("no2",10);
  17. request.setAttribute("no3",11);
  18. %>
  19. ${no1>no2}
  20. ${no3<no2}
  21. </body>
  22. </html>