Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%--
- Document : newjsp
- Created on : 11 апр. 2021 г., 15:26:26
- Author : Admin
- --%>
- <%@page contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>JSP Page</title>
- </head>
- <body>
- <h1>MY JSP PAAGE!!!!!!!!!!!!</h1>
- <%
- String v = request.getParameter("param");
- out.print(v);
- %>
- <%
- for (int i = 0; i < 10; i++) {
- %>
- <div><%=i%></div>
- <%
- }
- %>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement