uebung1/aufgabe21

This commit is contained in:
2026-02-12 17:23:41 +01:00
parent e30023b90c
commit c3299e0694
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Name anzeigen</title>
</head>
<body>
<%
String name = request.getParameter("name");
%>
Name: <%=name %>
</body>
</html>