1 |
<!DOCTYPE html SYSTEM> |
2 |
<html> |
3 |
<head> |
4 |
<title>Form Submission with File Select Control Test</title> |
5 |
</head> |
6 |
<body> |
7 |
<h1>Form Submission with File Select Control Test</h1> |
8 |
|
9 |
<h2><code class="HTTP">GET</code>, |
10 |
<code class="MIME">application/x-www-form-urlencoded</code></h2> |
11 |
<form method="get" action="asis" |
12 |
enctype="application/x-www-form-urlencoded"> |
13 |
<dl> |
14 |
<dt><label for="FILE1-1">File:</label></dt> |
15 |
<dd><input type="file" name="file1" id="FILE1-1"></dd> |
16 |
<dt><input type="submit"></dt> |
17 |
</dl> |
18 |
</form> |
19 |
|
20 |
<h2><code class="HTTP">POST</code>, |
21 |
<code class="MIME">application/x-www-form-urlencoded</code></h2> |
22 |
<form method="post" action="asis" |
23 |
enctype="application/x-www-form-urlencoded"> |
24 |
<dl> |
25 |
<dt><label for="FILE1-2">File:</label></dt> |
26 |
<dd><input type="file" name="file1" id="FILE1-2"></dd> |
27 |
<dt><input type="submit"></dt> |
28 |
</dl> |
29 |
</form> |
30 |
|
31 |
<h2><code class="HTTP">GET</code>, |
32 |
<code class="MIME">multipart/form-data</code></h2> |
33 |
<form method="get" action="asis" |
34 |
enctype="multipart/form-data"> |
35 |
<dl> |
36 |
<dt><label for="FILE1-3">File:</label></dt> |
37 |
<dd><input type="file" name="file1" id="FILE1-3"></dd> |
38 |
<dt><input type="submit"></dt> |
39 |
</dl> |
40 |
</form> |
41 |
|
42 |
<h2><code class="HTTP">POST</code>, |
43 |
<code class="MIME">multipart/form-data</code></h2> |
44 |
<form method="post" action="asis" |
45 |
enctype="multipart/form-data"> |
46 |
<dl> |
47 |
<dt><label for="FILE1-4">File:</label></dt> |
48 |
<dd><input type="file" name="file1" id="FILE1-4"></dd> |
49 |
<dt><input type="submit"></dt> |
50 |
</dl> |
51 |
</form> |
52 |
</body> |
53 |
</html> |