-
Notifications
You must be signed in to change notification settings - Fork 0
/
show-data.html
69 lines (58 loc) · 1.95 KB
/
show-data.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<title>Feedback Sent</title>
</head>
<body>
<p align=center> </p>
<h1 align=center>
<font size="+1">The following information has been sent as your
feedback:</font>
</h1>
<table border="1" align=center width="226">
<tr>
<th align="center">Form Field</th>
<th align="center">Field Value</th>
</tr>
<script language="javascript">
var args = location.search.substr(1).split('&');
for (var i = 0; i < args.length; ++i) {
var parts = args[i].split('=');
if (parts != null) {
var field = parts[0];
var value = parts[1];
if (value == null) {
value = "null"
}
else {
value = '"' + unescape(value.replace(/\+/g, ' ')) + '"';
}
document.writeln('<tr><td align="center">' + field + '</td>');
document.writeln('<td align="center">' + value + '</td></tr>');
}
}
</script>
<noscript>
<tr>
<td>
<p>You need to turn on Javascript in your browser.</p>
<p>In Microsoft Internet Explorer 4 or greater:</p>
<ul>
<li>From the "Tools" menu (in IE 4, it's the "View" menu), select "Internet Options".</li>
<li>Click on the "Security" tab.</li>
<li>Click on the "Custom Level" button. (In IE 4, select "Custom"
and then click on "Settings...".)</li>
<li>Under "Active scripting" make sure "Enable" is selected.</li>
</ul>
<p>In Netscape version 4 or greater:</p>
<ul>
<li>From the <b>Edit</b> menu, select <b>Preferences</b>.</li>
<li>In the <b>Category</b> list on the left, click on the word "Advanced".</li>
<li>In the panel on the right, make sure "Enable JavaScript" is checked.</li>
<li>Click the <b>OK</b> button.</li>
</ul>
</td>
</tr>
</noscript>
</table>
</body>
</html>