Files
codeql/javascript/extractor/tests/vue/input/simple-jsp.jsp
2023-10-13 12:09:27 +02:00

15 lines
295 B
Plaintext

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Hello World JSP</title>
</head>
<body>
<h1>Hello World!</h1>
<% String name = "John"; %>
<p>Welcome <%= name %>!</p>
<script>
console.log(123);
</script>
</body>
</html>