This commit is contained in:
2026-03-26 15:18:14 +05:30
parent 7aec8aedd9
commit 8748b767eb
57 changed files with 454 additions and 20 deletions

View File

@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Class-Path:

View File

@@ -0,0 +1,19 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>Scriplet Tag</h1>
<%
String message = "Hello World";
out.println(message);
for(int i=1;i<=5;i++){
out.println(i);
}
%>
</body>
</html>

View File

@@ -0,0 +1,21 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%!
int num1 = 1485;
int num2 = 2545;
int add(int a, int b){
return a + b;
}
%>
<h1>Declaration Tag</h1>
<p>Sum of <%= num1%> and <%= num2%> is <%= add(num1, num2)%></p>
</body>
</html>

View File

@@ -0,0 +1,15 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>Expression Tag</h1>
<p>The result of 4 + 3 is <%= 4 + 3 %></p>
<p>The current date and time is: <%= new java.util.Date() %></p>
</body>
</html>

View File

@@ -0,0 +1,20 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>Scriplet Tag</h1>
<%
String message = "Hello World";
out.println(message);
for(int i=1;i<=5;i++){
out.println(i);
}
%>
</body>
</html>