Advertisement
sergAccount

Untitled

Apr 11th, 2021
610
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 KB | None | 0 0
  1. <%--
  2.     Document   : newjsp
  3.     Created on : 11 апр. 2021 г., 15:26:26
  4.     Author     : Admin
  5. --%>
  6.  
  7. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  8. <!DOCTYPE html>
  9. <html>
  10.     <head>
  11.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12.         <title>JSP Page</title>
  13.     </head>
  14.     <body>
  15.         <h1>MY JSP PAAGE!!!!!!!!!!!!</h1>
  16.        
  17.         <%
  18.             String v = request.getParameter("param");
  19.             out.print(v);
  20.         %>
  21.        
  22.         <%
  23.             for (int i = 0; i < 10; i++) {
  24.         %>    
  25.         <div><%=i%></div>
  26.         <%
  27.             }        
  28.         %>                
  29.     </body>
  30. </html>
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement