summaryrefslogtreecommitdiffstats
path: root/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum4/CgiTestFormular.htm
blob: 907c2bdec26a89f96e0a3e81b7aeaaf46008b05e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
      "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
	<title>CgiTestformular</title>
</head>
<body>
	<h1>CgiTestFormular</h1>
	<p>Dieses Formular sendet an 
	   <a href="http://localhost/cgi-bin/CgiTest.exe"> http://localhost/cgi-bin/CgiTest.exe
	   </a>
	</p>
	<form action="http://localhost/cgi-bin/CgiTest.exe" method="get">
	   <p>Name:<br><input maxlength="40" size="40" name="Anwendername"></p>
	   <p>Text:<br><textarea name="KommentarText" rows="2" cols="40"></textarea></p>
	   <p><input type="submit" value="absenden"> mit GET</p>
	</form>
	<form action="http://localhost/cgi-bin/CgiTest.exe" method="post">
	   <p>Name:<br><input maxlength="40" size="40" name="Anwendername"></p>
	   <p>Text:<br><textarea name="KommentarText" rows="2" cols="40"></textarea></p>
	   <p><input type="submit" value="absenden"> mit POST</p>
	</form>
</body>
</html>