Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Display all IIS Request.ServerVariables</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
body{
font-family: Georgia, "Times New Roman", Times, serif;
padding:5px;
margin:5px;
}
</style>
</head>
<body>
<h1>Display all IIS Request.ServerVariables</h1>
<p>Written by: <a href="http://www.tr1stan.com" title="Click here to view his site">Tr1stan</a> {19/11/04}</p>
<%
For Each ServerVar In Request.ServerVariables
if x mod 2 = 0 then
bgcolour = "#ccc"
else
bgcolour = "#999"
end if
response.write("<div style=""height:20px;border: 1px solid #ccc; width:250px;float:left;clear:both;background: "& bgcolour &""">" & ServerVar & "</div><div style=""min-height:20px;border: 1px solid #ccc;margin-left:250px;""> " & Request.ServerVariables(ServerVar)&"</div>"& vbCR)
x = x + 1
Next
%>
</body>
</html>