Any ASP functions can get the HTTP request and response headers?

Thanks!
John

Re: ASP functions can get the HTTP request and response headers? by Bob

Bob
Thu Aug 28 17:15:54 CDT 2003

John Davis wrote:
> Any ASP functions can get the HTTP request and response headers?
>
> Thanks!
> John

for each x in request.servervariables
response.write x & ": " & request.servervariables(x) & "<BR>"
next

Is that what you want?

Bob barrows