Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%@ Language=VBScript %>
<% option explicit %>
<html>
<head><title> My details </head></title>
<body>
<h2>Request ServerVariables List</h2>
<%
Dim V
For Each V in Request.ServerVariables
response.write "<BR>" & V & "=" & Request.ServerVariables(V)
Next
response.write "--- End of List ---"
%>
</body></html>