Example output:
&var1=Tom&var2=Smith&var3=abcdefg&end;
Be sure to have in your ASP code the following (below). This will make sure that your text output like the example above doesn't have any HTML headers, whitespace, etc.
<%
Response.ContentType "text/plain; charset=utf-8"
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>