<%@ LANGUAGE=VBScript LCID=1033%>
<%
' Utility sample for Aspicore GSM Tracker
' Show URL arguments as plain text
' This sample demonstrates, how Aspicore GSM Tracker sends location data to the server via HTTP.
' Usage: Set "Internet page URL" in Aspicore GSM Tracker settings to point to this page.
'        You see the output in your phone in the Info tab every time the phone sends
'        some location data to the server via a HTTP connection.
' (c) Aspicore Ltd 2005, www.aspicore.com
' Tested with Windows XP, IIS ASP 5.1 and Windows 2000, IIS ASP 5.0
' ------------------------------
' Change History:
' 2005-04-13 jje - Script created
%>
<% Option Explicit
   Response.Buffer = True
   Response.ContentType = "text/plain; charset=ISO-8859-1"
   Response.Expires = 0
   ' Response.LCID = 1033 ' Windows 2000 does not support this, so replaced by the following line
   Session.LCID = 1033 ' Geographical locale telling how to format dates and times, 1033 = English - US

' Show time and arguments in the response to the HTTP client

   Response.Write Now() & vbCrLf

   Dim item
   For Each item In Request.QueryString
     Response.Write item & " => " & Request.QueryString(item) & vbCrLf
   Next
%>